Can automator create folders and organize files?

I produce a large number of files that must all be moved into appropriate folders manually, but in a consistent manner every time. The files are titled with a keyword for the folder that needs to be created for them. There are just five consistent folders.
Can automator be made to automatically create these folders and move the appropriate images into them? Perhaps from the right click menu?
I've tinkered a little bit, but only been able to produce erratic behavior. In all my experiments it always stalls on the 'create new folder' step, although it does create a folder, though usually not where I needed it to go.
Any advice would be really helpful! Thanks!

Bravenewcharles wrote:
Ok, so while I edit my files in my Mac that will occupy some space on its hard drive that will be backed up in the TC. Does that mean that I will occupy two hard drives on the same stuff?
Exactly.  That's kinda the definition of a backup.  When (not if) something awful happens, like your Mac being lost or stolen, or the HD failing or getting corrupted, or you accidentally change or delete some stuff, you have a backup you can recover.
What will happen when my Mac's hard drive is completely full?
Don't let it.  Delete things you don't need.  If you can't delete enough, as Neil says, get an external HD for the "overflow" that won't fit, then let Time Machine back up both your Mac and the external.  See Time Machine - Frequently Asked Question #32 for more info.
Message was edited by: Pondini

Similar Messages

  • Can I use the Time Capsule as an storage drive? Can I create folders and save files on it as with a external hard drive?

    I want to know if I can use my Time Capsule as a storage hard drive instead of only use it to back up my Mac

    Bravenewcharles wrote:
    Ok, so while I edit my files in my Mac that will occupy some space on its hard drive that will be backed up in the TC. Does that mean that I will occupy two hard drives on the same stuff?
    Exactly.  That's kinda the definition of a backup.  When (not if) something awful happens, like your Mac being lost or stolen, or the HD failing or getting corrupted, or you accidentally change or delete some stuff, you have a backup you can recover.
    What will happen when my Mac's hard drive is completely full?
    Don't let it.  Delete things you don't need.  If you can't delete enough, as Neil says, get an external HD for the "overflow" that won't fit, then let Time Machine back up both your Mac and the external.  See Time Machine - Frequently Asked Question #32 for more info.
    Message was edited by: Pondini

  • HT204655 Can I create folders and subfolders in the new Photos on my mac?

    I've just started using the new Photos app in the latest Yosemite update on my Macbook Pro.
    Until recently I was using Aperture to sort all my photos into folders and subfolders - I think they were called "events" or "projects" in Aperture. 
    In Aperture, I was creating folders like "1993", "1994", "1995" or "Best of My Family".
    Then I had subfolders within those folders - things like a "Christmas 1995", and perhaps some subfolders within that like "Christmas 1995 at Home", "Christmas 1995 at Parents" as well as things like a "favorite 1995 pics".
    And sometime non-date related folders - things like "Children as Babies" subfolder or "Parents on Vacations" subfolder within the "Family" folder.  
    These folders and subfolders seem to have been carried through to this new Photos app as "iPhotos Events".
    But I dont seem to be able to continue sorting - like creating new subfolders within folders.   For example, in Photos I don't seem to be able to create an album within in an album.
    Am I missing a trick here?
    Is Photos unable to do this?
    Or, is the community please able to suggest another alternative solution - like, would using the Pictures folder in Finder be better, perhaps in conjunction with DropBox instead of iCloud?
    Or another photo organizing app that is able to sort folders and subfolders?
    Thank you for your help in advance!

    One way to create folders, subfolders, albums, is to make sure you have your Sidebar showing (menu - view > sidebar) and then use "Control + mouse click" on a folder you want to create a subfolder or album in to bring up the contextual menu.   You can also do these things in the upper right of the Photos window using the + icon but that always seemed to put those items in the top level of the sidebar so I would have to drag and drop them to the folder where I wanted them to go.
    Lori

  • Using AppleScript to create folders and place files in them

    Hi guys,
    I've been reading through the forum for the better part of the last 6 hours wracking my brain trying to figure out how to accomplish what I'm trying to do. I've been playing around with Automator and also trying to decipher some Apple Script samples that were posted on here, but I'm really having no luck at all. I'm sure you've all been there where you feel like you're on an endless search to solve a problem and it feels like there's no hope. I've tried every single possible thing I can and I'm getting close, but it's never quite right.
    Here's what I'm trying to do, and hopefully some kind soul will help me out. I'm deseperately trying to figure this out, and any help at all would be GREATLY appreciated!
    I have a bunch of PDF files that I scan, in the hundreds. After I've scanned them I'm left with something like this:
    1234567_Elephant.pdf
    1234567_Duck.pdf
    1234567_Cat.pdf
    1234567_Cat_01.pdf
    1234567_Dog.pdf
    3431233_Elephant.pdf
    3431233_Dog.pdf
    3431233_Dog_01.pdf
    3431233_Duck.pdf
    etc...
    So they have a 7 digit ID, then the file name which is always one of the 4 options (I'm just using the animals as examples, but they would be other words).
    What I'd want the script to do is categorize these into folders based on the ID number, and then based on the "animal" and then the files within them. Note, some files have an _01 or _02 etc... appended to them. I don't know if this makes a difference.
    So after running the script I'd love to see
    1234567 (Folder)
         Elephant (Subfolder)
              1234567_Elephant.pdf (File)
         Duck (Subfolder)
              1234567_Duck.pdf (File)
         Cat (Subfolder)
              1234567_Cat.pdf (File)
              1234567_Cat_01.pdf (File)
         Dog (Subfolder)
              1234567_Dog.pdf (File)
    3431233
         Elephant
              3431233_Elephant.pdf
         Dog
              3431233_Dog.pdf
              3431233_Dog_01.pdf
         Duck
              3431233_Duck.pdf

    well, using a couple of stock handlers I had lying around, and making the following assumptions:
    that an underscore is always the delimiter used
    that the file name is always a single word like 'dog' or 'cat' (if you have multiple word file names, the script needs to be modified some)
    this should do what you ask:
    set mainFolder to (choose folder) as text
    tell application "System Events"
      -- get all the unsorted files, and loop through
              set unsortedFiles to every file of folder mainFolder whose visible is true
              repeat with thisFile in unsortedFiles
      -- split the file name on underscores and periods
                        set fileNameBits to my tid(name of thisFile, {"_", "."})
      -- first item of list is id, make/get correct folder
                        set IDFolder to my checkForFolder(mainFolder, item 1 of fileNameBits)
      -- second item of list is file name, make/get correct folder in id folder
                        set groupFolder to my checkForFolder(IDFolder, item 2 of fileNameBits)
      -- move file
      move thisFile to groupFolder
              end repeat
    end tell
    to checkForFolder(fParent, fName)
      -- subroutine checks for folder, creating it if it doesn't exist
              tell application "System Events"
                        if not (exists folder fName of folder fParent) then
                                  set output to path of (make new folder at end of folder fParent with properties {name:fName})
                        else
                                  set output to (path of (folder fName of folder fParent))
                        end if
              end tell
              return output
    end checkForFolder
    on tid(input, delim)
      -- subroutine for handling text item delimiters
              set {oldTID, my text item delimiters} to {my text item delimiters, delim}
              if class of input is list then
                        set output to input as text
              else
                        set output to text items of input
              end if
              set my text item delimiters to oldTID
              return output
    end tid

  • Bookmarks will not allow me to create folders and organize bookmarks doesn't show the bookmarks I have

    I go to "Bookmark this page" then click on "Bookmarks menu" I get a drop down menu that gives me a solection of files to go to and within that is "choose" selection.
    When I go there the "new folder" option is greyed out. Therefore I cannot set up a new folder. I am aware that I can create a folder within the bookmarks drop down itself.....but I have always used the above mentioned facility.
    Can anyone help please.
    BTW I have uninstalled and reinstalled latest version.

    You can try http://kb.mozillazine.org/Locked_or_damaged_places.sqlite

  • Can you create folders and put similar apps in the folders?

    It would help me keep them in order.

    Sure you can. Tap and hold down on any app icon until all of the icons "jiggle". Then drag one icon on top of another icon and a folder will automatically be created. You can name the folder as you see fit, but the iPad will give it a name on its own, based on the type of apps that you first create the folder with.
    When you are done - tap anywhere on the screen - other than in the folder itself - and then tap the home button and the apps will stop jiggling. You can put up to 20 apps into a folder.

  • Can I create folders in iCloud?

    I have not used iCloud very much because I can't tell where my documents are.  I know that sounds silly and I do know literally where they are.  But it seems you cannot interact with them via a finder window.  You must go through individual applications.  However, I created a new document on my mac mini recently and when I opened my laptop several hours later it was sitting there ready to be worked on.  This is a great feature and I am interested in using it further but not if I can't create folders and organize iCloud like the rest of all my files.   Does anyone have any insights on Apple's plans for this?

    I'm not sure about Apple's plans, but see the thread below for information on creating folders in iCloud.
    https://discussions.apple.com/message/24335682#24335682

  • Creating Folder and Accessing Files from Folders in mobile phone

    Hello Friends,
    I am doing my project where I need to create folders and accessing files from those folders in java enabled mobile phones.But I do not know the required tasks for this.Any type of help is highly appreciated.
    Greeting
    Saadi

    You have to get the classname of the Items you receive from getitems.
    There you have only to look for Folder.CLASS_NAME. Example:
    ifsFol sorted by names in ascending order (names of folders and files)
    String[] sort_attributes = {"NAME"};
    //sort will be ascending
    boolean [] sort_orders = {true};
    oracle.ifs.common.SortSpecification sort = new oracle.ifs.common.SortSpecification(sort_attributes, sort_orders);
    ifsFol.setSortSpecification(sort);
    PublicObject[] contents = ifsFol.getItems();
    System.out.println("Here are the names of the items in folder: ");
    for (int i=0; i < contents.length; i++) {
    if (contents.getClassname().equals(Folder.CLASS_NAME)) {
    System.out.println(contents[i].getName());
    null

  • Can I create folders to store all the forms so they are organized and easier to locate?

    I have a lot of forms created and sometimes difficult to locate the form I am looking for.  It would be nice to create folders to organize the forms.

    Sorry we do not yet support this feature. You can vote for the idea here : http://forums.adobe.com/ideas/1587
    Gen

  • How can I create an csv/excel file using pl/sql and then sending that file

    How can I create an csv/excel file using pl/sql and then sending that file to a clients site using pl/sql?
    I know how to create the csv/excel file but I can't figure out how I would get it to the clients site.

    968776 wrote:
    How can I create an csv/excel file using pl/sql and then sending that file to a clients site using pl/sql?
    I know how to create the csv/excel file but I can't figure out how I would get it to the clients site.You are trying to do it at a wrong place..
    Whay do you want database (pl/sql) code to do these things?
    Anyhow, you may be interested in :
    {message:id=9360007}
    {message:id=9984244}

  • How can I create Folders in iPod and keep all bands & artists separate?

    Hi guys,
    How can I create folders for different artists and keep them separate? Is it somthing that I need to do in iTunes in my Mac or import them a certain way?
    Anyone please,
    Thanks in advance,
    Zia

    If you have the artist information entered in iTunes, then they should already be organized like that on iPod.
    Go to music-->artists
    btabz

  • Version 8.1 Can't Activate, Can't Update, Can't create/export NX *.prt Files to 3D PDF. Screen Capture feature does not properly represent Model/Bodies. Printing from NX does not recognize Adobe Acrobat 3D as a printer to try and export.

    Version 8.1 Can't Activate, Can't Update, Can't create/export NX *.prt Files to 3D PDF. Screen Capture feature does not properly represent Model/Bodies. Printing from NX does not recognize Adobe Acrobat 3D as a printer to try and export.
    I was able to register it though.

    Not a surprise. The Acrobat 8 product family passed into End of Support back in 2011.
    Be well...

  • Can I create folders (albums) for my photos and move them?

    Can I create folders (albums), for my photos and then relocate said photos to specific folders?

    These links may be helpful.
    How To Create Photo Albums http://tinyurl.com/cxm4eoq
    How to Add New Albums in the Photos App on the iPad & Add Photos to the Album
    http://tinyurl.com/7qep7fs
     Cheers, Tom

  • Auto-populating folders and .lvclass files

    This post really contains two different questions/issues. The first question is about using auto-populating folders with .lvclass files. The second is a more specific question about why I think I need to use auto-populating folders for some .lvclass files in a project.
    I understand that .lvclass files should not be put into auto-populating. Even though I know that is a rule, I don't really understand why. I think the reasoning is that the auto-populating folder ends up making a copy of the .lvclass file, and this could cause dependency issues since I now have two copies of the .lvclass file in memory, is that correct?
    I have run into a situation where it seems that need to put some classes into an auto-populating folder so they can be distributed with my EXE by an installer.  My EXE will load those classes into the program via a factory at runtime. Besides putting those .lvclass files into an auto-populating folder, I can’t find any other way to distribute the .lvclass files with my exe. Am I stuck with putting these classes into an auto-populating folder or is there another way to have my installer include them for distribution?

    tst wrote:
    What I will say, though, is that it seems you have a bad misunderstanding of auto-populating folders. First, there is no "should". You may or may not use auto-pop. for anything you want. I usually prefer not to. Others like to use them for everything.
    The second thing is that auto-pop. only affects what goes in the project tree. It doesn't create copies on disk or in memory. It's simply an organizational tool for the project. One place where it can be useful for people who don't usually use it is indeed when you want to automatically include files in a build, but I don't think that really applies with plugins, since presumably you want to build each plugin separately.
    From what I've been told by multiple sources is that you can use autopop folders with .lvclass files, but it is not best practice. In other words, you can do it, but should not. It was three years ago I took NI's LVOOP course where I was first told that this was not a good pracetice and that it has something to do with dynamically dispatching objects, but I can't remmeber the exact reason(s).
    I turned to both this forum and called NI apps engineers to find out why it is not a best practice to use autopop folders with .lvclass files. After some research the apps engineer over at NI that was helping me concluded that including .lvclass files in an autopopulating folder is not best practice because (according to him) doing so somehow creates two copies of the files in memory. I'm still not totaly sure if that true or not, but unless something changed, there are good reasons why one shouldn't mix autopop folders and .lvclass files. I'd just like to understand what those reasons are. 

  • How create folders to organize content on adobe reader?

    How create folders to organize content on adobe reader?

    Go to the "Documents" view (From a document, tap "Documents" or "Recents" in the toolbar and then choose "Documents"). Then, tap "Edit" and you will see a folder with a "+" in it. You can add a folder here. Subsequently, you can tap "Edit" and use the move button (the folder with the arrow in it) to move a document to your new folder.

Maybe you are looking for

  • Partner function not working when creating PO with ref to PReq

    Partner function is not working when creating a Purchase Order with ref to a Purchase Requistion, Partner functions maintained in the vendor master are VN, OA & PI. But OA & PI are not appearing in the PO header partner tab when created with ref to P

  • A big problem in JSF1.1dynamic include

    hi, i have a problem about JSF dynamic include as follow: i use Eclipse3.2.1 JSF1.1.3 and TomCat5.5 I use a bean call "Control" to save the path which i gonna include. I have a selectItem in the first page, when user select the selectitem, valueChang

  • How can send Interactive PDF form as an Email attachment?

    Hi Experts, I am generating Interactive form with one SUBMIT button. User will edit form data and clicks on SUBMIT button. There I need to send an email notification to user with PDF attachment. How can do this? Where Can I capture binary format of t

  • Getting started UCM webservice XML

    I am at a loss. I have this 400 and some page PDF as a guide for UCM and I do not remotely know how to successfully search for documents stored in UCM using the webservice interface. I can retrieve a document if I know the dID but my users won't know

  • Assistance on the instllation of an AIP-SSM20

    What information do I need to collect in order to install and configure a AIP-SSM20