i need to remove the files from a folder every 4 hours. Otherwise storage folder will be filled with files and production server will be hang.
|
|
You could create a batch file to delete the files in the subfolder, then create a scheduled task to run the batch file every 4 hours. Since the windows scheduler doesn't allow for hourly tasks you would have to go into the advanced options and create multiple daily tasks that are offset by 4 hours from each other. |
|||
|
|
There is a vbs script (google for deleteoldfiles.zip) that we use to delete files that are older than a certain number of days from our fileserver. Not sure if it can be configured to work in 4 hours, but it would be a good place to start. |
|||
|
|
|
To delete all files from a storage folder, say C:\Temp, every four hours, I would use the following biterscript.
Biterscripting can be downloaded from http://www.biterscripting.com . The last time I checked, it was free. I am enclosing the $file in the delete command in double quotes in case the file or path may contain spaces or other special characters. Patrick |
|||
|
|