[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Which File Classto use

Zayd Abdullah

2/3/2009 8:59:00 PM

I am new to Ruby and would like to create a small project that deals
with the file system. The parameters I would like to pass in the command
window would be, how many iterations I would like to run, how many
folders I would like to create, how many files I would like to put
inside those folders, how many I want to open, and close. In the
processI would like to rename the folders and files, and change its
attributes.
Is there one specificfile class I use. or many. I'm have no clue.Do some
classes do the same thing, is one better to use then the other?

I just would like to be pointed in the right direction to get started,
then figure everything else out on my own.

Kindest Regards
Zayd
--
Posted via http://www.ruby-....

2 Answers

Julian Leviston

2/4/2009 12:05:00 AM

0

Best thing to do is build your program one step at a time. Pick one
feature - say asking number of iterations and doing the loop, putting
a print command to simply show that it's doing something in mock of
the actual code for creating folders and files. Then add the next
thing. Use irb to experiment with the classes to test things out. For
instance, to find out how to use the file class, open irb then ask
File what methods it responds to with File.methods, then try some out.

Blog: http://random8.ze...
Learn rails: http://sensei.ze...

On 04/02/2009, at 7:59 AM, Zayd Connor <devrubygem@gmail.com> wrote:

> I am new to Ruby and would like to create a small project that deals
> with the file system. The parameters I would like to pass in the
> command
> window would be, how many iterations I would like to run, how many
> folders I would like to create, how many files I would like to put
> inside those folders, how many I want to open, and close. In the
> processI would like to rename the folders and files, and change its
> attributes.
> Is there one specificfile class I use. or many. I'm have no clue.Do
> some
> classes do the same thing, is one better to use then the other?
>
> I just would like to be pointed in the right direction to get started,
> then figure everything else out on my own.
>
> Kindest Regards
> Zayd
> --
> Posted via http://www.ruby-....
>

Zayd Abdullah

2/4/2009 4:41:00 AM

0

Julian Leviston wrote:
> Best thing to do is build your program one step at a time. Pick one
> feature - say asking number of iterations and doing the loop, putting
> a print command to simply show that it's doing something in mock of
> the actual code for creating folders and files. Then add the next
> thing. Use irb to experiment with the classes to test things out. For
> instance, to find out how to use the file class, open irb then ask
> File what methods it responds to with File.methods, then try some out.
>
> Blog: http://random8.ze...
> Learn rails: http://sensei.ze...

Thanks!!! Im guessing I can create an array of those iterations? I see
that there are a bunch of file classes, and some carry more methods then
others, im also guessing that i would be using of. Ourse the file method
and use say require 'FileUtil' to access more methods that are not in
the File class. Please correct me if im wrong :)
--
Posted via http://www.ruby-....