find /volume1/FTP/D09-2208/* -type f -mtime +15 -exec rm rf {} \; #永久删除超过指定天数的文件 Permanently delete files that exceed the specified number of days 已验证
find /volume1/目标文件夹-type d -exec rm -d {} ;
复制代码
剪切指定文件夹中超过指定天数的文件到另外一个文件夹
find /volume1/FTP/D09-2208/* -type f -mtime +30 -exec mv {} /volume1/FTP/#recycle/D09-2208/ \; #移动超过30天的文件到回收站 Move files older than 90 days to the Recycle Bin 已验证