我想使用appleScript语言获取文件夹的第一个文件名 它应该看起来像这样:
文件夹:photo.png,photo1.png,photo2.png,photo3.png
tell application "Finder"
set fileName to (1° file in this case photo.png)
end tell
请任何可以帮助我的人
答案 0 :(得分:1)
差不多。
tell application "Finder"
set fileName to name of first file of folder "Macintosh HD:path:to:folder"
end tell