我想製作一個文件夾去服務器上,人們可以添加照片,然後腳本將它們發送到正確的位置,但我遇到搜索部分的麻煩。搜索使用蘋果的文件夾
正如你可以在我的代碼中看到的那樣,它發現文件夾發送到哪裏的部分被註釋掉了,因爲我不知道它的語法是什麼。
任何幫助將不勝感激。
global theWatchedFolder
set theWatchedFolder to choose folder
on idle
tell application "Finder"
set theDetectedItems to every item of theWatchedFolder
repeat with aDetectedItem in theDetectedItems
set jobNumber to display dialog "Please enter the job number for this photo." buttons {"Submit", "Cancel"}
display dialog "File detected: " & jobNumber
--tell finder
-- search for jobNumber in (path to desktop)
--set jobFolder to top search result
--end tell
--set colourFolder to jobfolder & /colour
move aDetectedItem to the desktop --move to colourFolder
end repeat
end tell
if theDetectedItems is not {} then
activate
display dialog "test move complete"
end if
return 1
end idle
另外,我很擔心,如果這個腳本是在服務器上,看着服務器上的文件夾,那麼就不會創建一個彈出的人誰增加了一個文件夾在服務器上。希望我錯了,但如果有人可以確認這種方式或其他方式,那就太棒了。謝謝:)
即使鏈接到另一個網站,告訴我如何做到這一點就足夠了,我真的需要得到這一點的代碼工作:( –