我正在尝试获取 AppleScript 中文件的最后修改日期。我以为我有这个工作使用:
set thePath to (((path to documents folder) as text) & "speed.txt")
set modDate to modification date of file thePath
这似乎返回了一个有效值,但是当我把它放在on idle
一段代码中时,我得到一个:
“无法获得...的类<>”错误
我在其他地方看到了使用建议:
set the modDate to (do shell script "mdls -name kMDItemLasUsedDate " & quoted form of the POSIX path of thePath)
但这会返回null
。关于如何获得修改日期的任何想法?