1
我有一個applescript,用於檢查連接到我的計算機的幾個外部HD中的一個,並對其內容進行索引。所有的HD都遵循命名方案HK_12345,前兩個字母總是相同,但每個驅動器的數字都不相同。我希望腳本只檢查帶有'HK'指示的驅動器,而不管結尾的數字如何。我有這個,但它不工作。有什麼建議?檢查文件夾中的部分文件夾名稱
set folderContains to "HK_"
tell application "Finder"
set triggerFolder to folder whose name contains folderContains
end tell
tell application "Finder"
if folder triggerFolder exists then
-- some other code
end if
end tell
謝謝,這完美! –