मैंने Applescript में एक Folder Action script बनाई, जो आप चाहते हैं वही कर सकते हैं। इसे एक नए एप्सस्क्रिप्ट में कॉपी और पेस्ट करें, और इसे एक एप्लिकेशन (एक प्रारंभिक वार्ता के बिना) "/ लाइब्रेरी / लिपियों / फ़ोल्डर एक्शन लिपियों /" में सहेजें। फिर आप इसे फ़ोल्डर पर राइट क्लिक करके और सर्विसेज ड्रॉप-आउट मेनू से "कॉन्फ़िगर फ़ोल्डर कार्रवाई" का चयन करके किसी भी फ़ोल्डर (सबसे अधिक संभावना है कि आपके ~ / डाउनलोड / फ़ोल्डर) को संलग्न कर सकते हैं। फ़ोल्डर क्रियाओं को सक्रिय करें और स्क्रिप्ट को फ़ोल्डर देखने दें।
स्क्रिप्ट मूल रूप से क्या करती है, यह फ़ोल्डर में गिराए गए आइटम्स पर प्रतिक्रिया होती है और यदि संलग्न आइटम काइंड का है: "इमेज" यह इमेज को "हडियुटिल" कमांड लाइन टूल के माध्यम से वॉल्यूम के रूप में जोड़ता है।
आप स्क्रिप्ट में OpenWindow और makeFrontmost गुण सेट करके इट्स व्यवहार को कॉन्फ़िगर कर सकते हैं; यह स्क्रिप्ट पर डबल-क्लिक करके भी किया जा सकता है क्योंकि आपने इसे एक एप्लिकेशन के रूप में सहेजा है - यह तब दो संवादों में पूछेगा कि यह मानक व्यवहार क्या होना चाहिए।
आशा है कि ये आपकी मदद करेगा,
एस्मस
property openWindow : true
property makeFrontmost : true
on run
display dialog "Do you want to bring the Finder to the front after new items are added?" buttons {"Don't Activate", "Activate"} default button 2
if the button returned of the result is "Don't Activate" then
set makeFrontmost to false
else
set makeFrontmost to true
end if
display dialog "Open Folder after adding new files?" buttons {"Don't Open", "Open"} default button 2
if the button returned of the result is "Don't Open" then
set openWindow to false
else
set openWindow to true
end if
end run
on adding folder items to thisFolder after receiving addedItems
repeat with i from 1 to number of items in addedItems
set itemKind to the kind of (info for item i of addedItems) as string
if itemKind is "Disk Image" then
set itemPath to (quoted form of POSIX path of item i of addedItems)
try
showImage(itemPath)
end try
end if
end repeat
end adding folder items to
on showImage(itemPath)
set volumeMountpointInfo to do shell script "/usr/bin/hdiutil attach " & itemPath & " | grep Volumes"
if (openWindow is true) then
if (makeFrontmost is true) then
tell application "Finder" to activate
end if
set currentDelim to text item delimiters
set text item delimiters to tab
set volumeMountpoint to POSIX file (text item 3 of volumeMountpointInfo)
set text item delimiters to currentDelim
tell application "Finder" to open folder volumeMountpoint
end if
end showImage
====
फ़ोल्डर में गिराए गए फ़ाइल के प्रकार को निर्धारित करने के लिए दूसरा एप्सस्क्रिप्ट
On adding folder items to thisFolder after receiving addedItems
repeat with i from 1 to number of items in addedItems
set itemKind to the kind of (info for item i of addedItems) as string
display dialog itemKind
end repeat
end adding folder items to
संपादित होने के लिए "डिस्क छवि" की जरूरत है न कि "छवि" से