-1

我正在尝试编写一个应用程序脚本,检查我选择的文件夹中是否有一个名为 file.pages 的文件,如果有,Finder 应该为我将它复制到一个设定的路径......我有可能在那里使用吗顶部为existbthen commad:Applescript 检查文件是否存在并选择文件夹我使用命令:选择文件夹;将文件夹设置为结果

任何人都可以为我编写脚本吗?我不明白复制命令以及如何使用 POSIX

4

1 回答 1

0

尝试:

set fileName to "file.pages"

set myFolder_alias to choose folder
try
    tell application "Finder" to set myFile to (first file of myFolder_alias whose name is fileName)
on error
    return fileName & " does not exist in " & myFolder_alias
end try

set myAlias to myFile as alias
set myHFS_Path to myAlias as text
set myPosixPath to POSIX path of myAlias
于 2012-10-16T21:00:07.600 回答