Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
6answers
2k views

How can I break out of recursive find function once a specific file is found?

I'm using the File::Find module to traverse a directory tree. Once I find a specific file, I want to stop searching. How can I do that? find (\$processFile, $mydir); sub processFile() { ...
2
votes
3answers
814 views

Why doesn't File::Find handle my dangling symlink?

I'm using Perl's File::Find module to scan for files, directories, and links. Among other things, I want the utility I'm writing to report dangling links. In theory, this is supported by creating a ...
1
vote
1answer
88 views

Perl Find - No such file or directory

I am using File::Find and file i/o on a text file to parse a series of directories and move the contents into a new folder. It is a simple script (see below): #!/usr/bin/perl use strict; use ...
0
votes
1answer
109 views

Why did File::Find finish short of completely traversing a large directory?

A directory exists with a total of 2,153,425 items (according to Windows folder Properties). It contains .jpg and .gif image files located within a few subdirectories. The task was to move the images ...
-3
votes
1answer
53 views

writing a file finder (java)

I am writing an application which will search for for files with special filename extension on computer. (JPG for example). Input data: "D:", ".JPG" Output: txt file with results(file directories); I ...