使用Apple脚本在文件夹中查找fileName

时间:2019-02-17 20:30:29

标签: applescript directory filenames

我想使用appleScript语言获取文件夹的第一个文件名 它应该看起来像这样:

文件夹:photo.png,photo1.png,photo2.png,photo3.png

tell application "Finder"
   set fileName to (1° file in this case photo.png)
end tell

请任何可以帮助我的人

1 个答案:

答案 0 :(得分:1)

差不多。

tell application "Finder"
   set fileName to name of first file of folder "Macintosh HD:path:to:folder"
end tell