如何用perl⼀shell得到最新创建的文件⼀文件夹名?

2024-11-20 01:28:20
推荐回答(3个)
回答1:

可以用-A比较一下最后一次被访问的时间,取最新的(没测试过)
或者调用一下shell命令 ll -rt 最后一条就是了
应该有其他更有效率的办法,上面的方法貌似很丑。。

回答2:

in terminal , type: ll -tr or ls -tr
(-t sort by modification time,newest first
-r reverse order while sorting)
list the file and directory by time, the last means the lastest.

回答3:

什么意思是最新创建的文件/文件夹?