我正在尝试创建一个applescript来查看每个用户配置文件中的崩溃日志 ~/Library/Logs/DiagnosticReports .. 我在最后使用 * 因为可能有 .crash .spin .hang 文件,我需要复制它们全部到当前桌面进入文件夹“测试”,但不确定这是否是正确的方法。
当我尝试运行它时,我得到
错误“无法将 \"Test.txt\" 转换为整数类型。” 从“Test.txt”到整数的数字 -1700
try
do shell script "ls /users >$HOME/Desktop/Users.txt"
do shell script "mkdir ~/Desktop/Test"
end try
set b to boot volume of (system info)
set u to b & "Users"
set theFiles to paragraphs of "Test.txt"
repeat theFiles times
duplicate file u & theFiles & "~/Library/Logs/DiagnosticReports/Xxxxx*" to "~/Desktop/Test"
end repeat
感谢大家的帮助。