View Single Post
  #1 (permalink)  
Old July 3rd, 2009, 02:51 PM
pickup pickup is offline
Registered User
 
Join Date: May 2008
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Default 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:

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
Reply With Quote