Shortest and nicest way to delete all files from directory that match certain regex in Perl on Windows.
My example: delete all *.txt files from directory, but leave tmp.txt? Windows.
|
Shortest and nicest way to delete all files from directory that match certain regex in Perl on Windows. My example: delete all
| ||||
|
feedback
|
| |||||
feedback
|
| |||||||
feedback
|
|
While not perfect, maybe something long winded will help.
| |||
|
feedback
|
|
All of the solutions above are potentially problematic if there a lot files in the directory (10,000 or more), because they all read in the entire list of files at once. The safe thing to do is iterate through the directory, rather than read it all at once. "readdir" can return just the next entry in scalar context. I recommend updating @hpvac's answer with a while loop that goes through the directory one entry at a time. ( If you are certain there will never be a huge number of files, the solutions above are workable. ) | |||
feedback
|
|
There is a perl utility:
After typing the answer I saw you asked for a Windows solution. I think your best bet is downloading the (Perl source) for prename, and editting that a little, so that it works with Windows. | |||
|
feedback
|