2013-11-28 76 views
1

我有以下腳本,列出內容的文件夾(文件和文件夾的)AppleScript的獲得一個文件夾的唯一文件名

set the_files to (list folder (choose folder) without invisibles) 

如文件夾根目錄有一個文件text1.txt和文件夾subroot2和subroot3

但我怎樣才能得到一個文件夾根(不包括subroot2和subroot3)的文件名(只有text1.txt)?謝謝

回答

1
tell application "Finder" 
    files of folder (choose folder) -- Finder file objects 
    name of files of folder (choose folder) -- names of files 
end tell 
相關問題