我有以下命令来获取文件日期和时间
adb shell ls -l /sdcard/sample.txt
Result of this command :
-rwxrwxr-x system sdcard_rw 676 2013-09-24 11:23 sample.txt
现在,我希望 2013-09-24 11:23 时间也是秒。喜欢 2013-09-24 11:23:11
我将如何获得包含秒的文件修改日期。
谢谢.. :))
答案 0 :(得分:3)
如果您有stat命令:
stat -c %y /sdcard/sample.txt
自大纪元以来的秒数
stat -c %Y /sdcard/sample.txt
答案 1 :(得分:0)
通过调整发布的代码,我能够使用此命令使其工作:
adb -d shell ls -l time-style="+%Y-%m-%d %H:%M:%S" path_to_file_in_device
输出结果为:
-rw-rw-r-- root sdcard_rw 22357385 2013-09-25 22:42 launcher.apk
答案 2 :(得分:-2)
ls -l --time-style =" +%Y-%m-%d%H:%M:%S" /sdcard/sample.txt