Hi All,
Simplifying the way - How to delete the N days older files with bods.
Take a notepad and write below code
REM Remove files backup older than 40 days
forfiles /p "C:\backup\folder" /s /m *.* /c "cmd /c Del @path" /d -7
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