in reply to Processing All Files in a Directory Recursively under Windows OS
Works for me:
X:\>perl -MFile::Find -le "sub process_file{print $File::Find::name if + -f };find (\&process_file,'test with whitespace')" test with whitespace/a file.txt
Q:\>dir "test with whitespace" Datenträger in Laufwerk Q: ist homes_xxxxxxxx$ Volumeseriennummer: DEAD-BEEF Verzeichnis von Q:\test with whitespace 17.09.2007 11:12 <DIR> . 17.09.2007 10:10 <DIR> .. 17.09.2007 11:12 0 a file.txt
Maybe you can show us some code, the input and the output.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Processing All Files in a Directory Recursively under Windows OS
by azaria (Beadle) on Sep 17, 2007 at 09:34 UTC | |
by Corion (Patriarch) on Sep 17, 2007 at 10:49 UTC |