Check $path folder for the files that are older that 7 days and delete them.
find $path 2>>$DLOG -mtime +7 ! -exec rm -rf {} \;
check man page
Check $path folder for the files that are older that 7 days and delete them.
find $path 2>>$DLOG -mtime +7 ! -exec rm -rf {} \;
check man page