Re: File Finding

2005-11-21 Thread Chris Charley
Hello I got the file command to work but it is not as complete as I would have hoped for. I was hoping to get the file size and directory of the file so I could put them into arrays. Is there a way I can do it with the find command? Andrew Yes, File::Find will provide the directory. For

RE: File Finding

2005-11-21 Thread Timothy Johnson
Don't forget that each module has documentation that can be accessed via 'perldoc Module::Name' So try 'perldoc File::Find' (without the quotes) at the command-prompt. Hint: Check the section called The Wanted Function. For the file size, you will probably use the stat function. One way to