根据创建日期复制文件夹

Copy folders according to the date of creation

我想将一些文件夹复制到一个唯一的主文件夹(父目录)中。 我要复制的文件夹只是那些在某一天之前创建的。 是否有可能做到这一点?如果是,如何?

最佳

:

$ find -mtime +365 -type d -exec cp {} /another/dir +

365为天数(修改日期)