ארגון העומס בכונן הקשיח יכול להיות משימה די מייגעת. שירות Mac OS X זה יעזור להאיץ את העניינים בכך שהוא יאפשר לך לזרוק קבוצות של קבצים לתיקיה חדשה בלחיצה אחת בלבד.
אם אתה משהו כמוני, יש לך תיקיה איפשהו במערכת שלך (כמו תיקיית ההורדות או שולחן העבודה) שבה מצטבר הרבה זבל. כשהיא עמוסה מדי, אתה צריך לנקות אותו - מה שעלול להיות מעצבן כשאתה צריך ליצור תיקיות חדשות ולגרור קבצים. עם שירות זה, כל מה שאתה צריך לעשות הוא לבחור כמה קבצים, ללחוץ עליהם לחיצה ימנית, וללחוץ על פריט בתפריט ההקשר כדי לזרוק אותם לתיקיה חדשה.
כדי ליצור את השירות, פשוט פתח את Automator ובחר שירות בתפריט שצץ. הגדר את השירות שלך לקבל קבצים נבחרים מה-Finder בחלק העליון של זרימת העבודה, וגרור פנימה את פעולת הפעל Applescript. העתק את הקוד הבא לתיבה, הקפד להחליף רק את(* Your script goes yere *)
שורה (ולא השורות שאוכלסו מראש בהתחלה או בסוף):
tell application "Finder" (* what files do you want to gather into a new folder? *) set selectedItems to selection if selectedItems is not {} then (* topLevelName assures the uppermost file-level-directory will be selected in case of multiple selections in list or column view. *) set topLevelName to name of item 1 of selectedItems (* silly set of workarounds to override vanilla AppleScript's lack of permission when playing in the .Trash folders *) set selectionPath to POSIX path of file ((item 1 of selectedItems) as string) set selectionPath to ((characters 1 thru ((offset of topLevelName in selectionPath) - 1)) in selectionPath) as string (* Modify path string to create a unique target folder using date and time *) set dateString to do shell script "date \"+%Y.%m.%d %a %I.%M.%S %p\"" -- this line broken out for easy editing set newFolder to selectionPath & (dateString & " Gathered Items") -- rearrange as you please; is set this way for proper name sorting (* more workarounds to allow playing in the .Trash *) do shell script "mkdir " & quoted form of newFolder set newFolder to (POSIX file newFolder) as alias move selectedItems to newFolder reveal newFolder end ifend tell
כשתסיים, השירות שלך אמור להיראות בדיוק כמו התמונה משמאל. אם כן, פשוט שמור את השירות ככל שתרצה, ותוכל לגשת אליו מתפריט ההקשר של Finder או מתפריט Apple בכל פעם שתבחר בקבוצת קבצים. זה ייצור אוטומטית תיקיה חדשה ויכניס לתוכה את הקבצים האלה, מוכן לשינוי שם ולהמשיך בארגון.
אסוף פריטי Finder עם שירות חדש[רמזים ל-Mac OS X]