You are currently viewing the Applescript section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
Applescript: Search for folders and setting path to folder
Hi All,
I am working on a script to allow the user to pick a folder. Once picked, I wanted a search of the subfolders to see if a folder exists. In my case it will be named "Proxy".
Once I have found this folder, I would like to basically "Set Proxyfolder to path to "Proxy" folder. This way, I can perform an action to this particular folder.
Also, in many cases there may be more than one subfolder by the same name of "Proxy." How would I know which folder I would be dealing with? So far, my code is like this:
Code:
property new_foldername : "PROXY"
set this_folder to (choose folder with prompt "Select the main shoot folder")
tell application "Finder"
if (exists folder new_foldername of entire contents of this_folder) then
set Proxypath to (POSIX path of new_foldername)
else
display dialog "Proxy folder is not found"
end if
end tell