जब हम खोजक में 'नया फ़ोल्डर' बनाते हैं तो इसका नाम स्वतः ही 'अनटाइटल्ड फ़ोल्डर' होगा।
क्या उस डिफ़ॉल्ट फ़ोल्डर का नाम वर्तमान तिथि नाम में बदलना संभव है, उदाहरण के लिए "20151223"?
जब हम खोजक में 'नया फ़ोल्डर' बनाते हैं तो इसका नाम स्वतः ही 'अनटाइटल्ड फ़ोल्डर' होगा।
क्या उस डिफ़ॉल्ट फ़ोल्डर का नाम वर्तमान तिथि नाम में बदलना संभव है, उदाहरण के लिए "20151223"?
जवाबों:
AppleScript की सहायता से आप इसे पूरा कर सकते हैं।
AppleScript एडिटर खोलें, एक नया दस्तावेज़ बनाएं और निम्नलिखित चोरी की लाइनों को चिपकाएँ :
tell application "Finder"
try
if exists Finder window 1 then
set thisPath to (the target of the front window) as alias
else
set thisPath to (path to desktop)
end if
on error
return
end try
end tell
set x to my the_perfect_datestring()
if x is not "-ERROR" then
set fullPath to thisPath & x as text
tell application "Finder"
try
--activate
if not (exists fullPath) then
set y to make new folder at thisPath with properties {name:x}
end if
activate
open y
end try
end tell
end if
on the_perfect_datestring()
try
set cd to (the current date)
set the_year to year of (cd) as number
set the_month to month of (cd) as number
set the_day to day of (cd) as number
if the_month < 10 then set the_month to "0" & the_month
if the_day < 10 then set the_day to "0" & the_day
return ((the_year & the_month & the_day) as string)
on error
return "-ERROR"
end try
end the_perfect_datestring
फ़ाइल को AppleScript एप्लिकेशन (जैसे DateFolder.app) के रूप में कहीं पर सहेजें (जैसे ~ / अनुप्रयोग)।
एक फ़ोल्डर खोलें और टूलबार पर DateFolder.app ड्रॉप करें:
एक खुले फ़ोल्डर में एक फ़ोल्डर बनाने के लिए बस टूलबार में ऐप के आइकन को हिट करें। नया फोल्डर अपने आप खुल जाएगा। open y
यदि आप नया फ़ोल्डर नहीं खोलना चाहते हैं तो स्क्रिप्ट ( ) में लाइन 22 निकालें । यदि आप डॉक में एप्लिकेशन जोड़ते हैं और इसे खोलते हैं, तो यह फ्रंट फोल्डर में या डेस्कटॉप पर एक नया फ़ोल्डर बनाएगा (यदि कोई फ़ोल्डर नहीं खुला है)।
केवल मैक ओएस एक्स 10.7.5 में परीक्षण किया गया। सिंह!
एक हाइफ़न और वर्तमान समय जोड़ने के लिए निम्नलिखित पंक्तियाँ जोड़ें (ऊपर की स्क्रिप्ट में पंक्ति 32-34 को प्रतिस्थापित करें):
set the_hour to hours of (cd) as number
set the_minute to minutes of (cd) as number
set the_second to seconds of (cd) as number
if the_month < 10 then set the_month to "0" & the_month
if the_day < 10 then set the_day to "0" & the_day
if the_hour < 10 then set the_hour to "0" & the_hour
if the_minute < 10 then set the_minute to "0" & the_minute
if the_second < 10 then set the_second to "0" & the_second
return ((the_year & the_month & the_day & "-" & the_hour & the_minute & the_second) as string)