Re: File basenames using File.basename . .

-----Original Message-----
From: [email protected]
[mailto:[email protected]] On Behalf Of Peter B.
Sent: Thursday, April 13, 2006 5:57 AM
To: ruby-talk ML
Subject: Re: File basenames using File.basename . . .

Thanks, Dan. Both of your suggestions worked for me. Now, how could I
fulfill my instructions in the filesystem itself, not just in
the array?
I know I can do it with a system(“ren *.txt *.”), but, how
would I do it
in RUBY?

To rename individual files, use File.rename. For batches of files I’m
not sure off the top of my head, but I’m guessing there’s a method in
either FileUtils or ftools.

Regards,

Dan

Berger, Daniel wrote:

-----Original Message-----
From: [email protected]
[mailto:[email protected]] On Behalf Of Peter B.
Sent: Thursday, April 13, 2006 5:57 AM
To: ruby-talk ML
Subject: Re: File basenames using File.basename . . .

Thanks, Dan. Both of your suggestions worked for me. Now, how could I
fulfill my instructions in the filesystem itself, not just in
the array?
I know I can do it with a system(“ren *.txt *.”), but, how
would I do it
in RUBY?

To rename individual files, use File.rename. For batches of files I’m
not sure off the top of my head, but I’m guessing there’s a method in
either FileUtils or ftools.

Regards,

Dan

Makes sense. Thanks.