![]() |
Software to delete all files above a certain size in several subfolders
I need to delete all files above a certain size in 350 subfolders and I donīt want to do it manually.
Anyone know of any software that can do that ? |
find . -size +2048k -print0 | xargs -0 rm -f
You can use the -exec flag to find also, I'm assuming your on some unix like device. Replace 2048k with whatever size you want. That'll be $243 :Graucho |
Quote:
Itīs on my own Windows PC, not on a server. Anyone else ? |
oh man....
Press F3 Search for files over a given filesize.... It's only been in Windows since 95. -Ben |
Quote:
|
Sounds like you need more ram.
Windows Scripting Host can probably handle it. Could write a perl script to do it if you have ActivePerl. If it's that much work I'm guessing you'd probably be better off waiting for your computer to display the search. -Ben |
All times are GMT -7. The time now is 07:59 PM. |
Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123