Hi All,
Simplifying the way - How to delete the N days older files with bods(Windows Platform).
Take a notepad and write below code
REM Remove files backup older than 7 days
forfiles /p "C:\backup\folder" /s /m *.* /c "cmd /c Del @path" /d -7
Where,
/p <Path> : Specifies the path from which to start the search.
/s = search sub-directories
/m = search mask
/c = set a command
This code will delete files older than 7 days, if you want to delete 15 days older file write 15 instead of 7
Then call the bat file from bods script
exec('cmd', 'C:\delete_older_File.bat', 8);
Regards,
Gokul