You are currently viewing the Applescript section of the Wrox Programmer to Programmer discussions. This is a community of tens of thousands of computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining today you can post your own programming questions, respond to other programmers’ questions, win occasional prizes given to our best members, and eliminate the ads that are displayed to guests. Registration is fast, simple and absolutely free .
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