Tagged Questions
The file-find tag has no wiki summary.
6
votes
3answers
1k views
How do I pass parameters to the File::Find subroutine that processes each file?
Using File::Find, how can I pass parameters to the function that processes each file?
I have a Perl script that traverses directories in order to convert some 3-channel TIFF files to JPEG files (3 ...
3
votes
5answers
445 views
How can I find all MP3 files in a directory?
I recently started with delphi and now I want to get all mp3 files from a directory. I want something like the php function glob().
3
votes
4answers
404 views
How can I pass a parameter to the wanted function when using Perl's File::Find? [closed]
Possible Duplicate:
How do I pass parameters to the File::Find subroutine that processes each file?
One can use Perl's File::Find module
like this:
find(\&wanted, @directories);
...
2
votes
1answer
196 views
Perl script to find all unowned files and directories on Unix - How can I optimize further? [closed]
Following my findings and suggestions in my other post How to exclude a list of full directory paths in find command on Solaris, I have decided to write a Perl version of this script and see how I ...
2
votes
1answer
115 views
How to get the time of file Renamed
Last time I have asked a question regarding the retrieval of list of files modified after a particular time
How can I get the files modified in a directory in a particular period of time using c++?
...
2
votes
3answers
438 views
How can I use File::Find to print files with the relative path only?
I am using File::Find in the code below to find the files from /home/user/data path.
use File::Find;
my $path = "/home/user/data";
chdir($path);
my @files;
find(\&d, "$path");
foreach my $file ...
1
vote
1answer
345 views
How to check if directory is writeable by UID?
Can File::Find::Rule be used to determine if a directory is writeable by a given UID?
I have used the following test:
my $uid = 123; # or whatever...
my @subDirs = ...
1
vote
3answers
207 views
How can I open a file found by File::Find from inside the wanted function?
I have code like below. If I open the file $File::Find::name (in this case it is ./tmp/tmp.h) in my search function (called by File::Find::find), it says "cannot open the file ./tmp/tmp.h reason = No ...
0
votes
2answers
230 views
Perl File::Find: First list all files in directory and then jump to next dir?
I want to (by using File::Find) first list all files in current directory, and after that jump to a subdirectory. Is it possible?
0
votes
1answer
884 views
perl script to recursively list all filename in directroy
I have written following perl script but problem is its always going in else part and reporting not a file. I do have files in the directory which I am giving in input. What am I doing wrong here?
My ...
-1
votes
2answers
623 views
How can I make Perl's File::Find faster?
I have a folder named Lib and I am using the File::Find module to search that folder in whole dir say, D:\. It's taking a long time to search, say even 5 mins if the drive has a lot of subdirectories. ...