Copying Folder Structure

I have a folder structure of Months (01-January, 02-February, etc.) setup under each year folder.
Is there a way in Aperture to create a folder structure template and copy that structure to a new folder, as the new years need to be setup?

You can do this for Projects by setting up you Folder and Album structure in an empty Project, exporting it, and then importing it again each time you need a new copy, but not for Folder structures outside of Projects.
But if you download the Aperture-InDesign integration examples from http://www.apple.com/applescript/aperture/indesign/ there are a couple of example scripts for creating organisational structures that you might be able to tweak.
Ian

Similar Messages

  • Aperture only sees MOVs in SD card copy folder structure

    I copied a couple of SD cards to hard disk and trying to import images only shows the Movs which are in H.264 MTS file packages and completely ignores JPG images in the folder structure root and DCIM folders. All seems very random as not all MOVs are shown anyway (Quicktime handles packages perfectly).
    It's obviously no big deal and just requires some finder foot work but I see more and more vague behaviour from all Apple products these days.

    Thanks - reading directly from SD card shows images but many of the movies are still missed. Basically all a bit random - less than useless for a professional tool were users may rely on dumping card contents into a library before reuse.

  • ACL / ACE - Copy folder structure including all rights

    Dear readers
    A question about the proper settings in ACL/ACE for to copy a given folder structure incl. all ACL/ACE rights.
    Situation:
    On a OS X server, the admin user did setup a sample structure of folders and files with the corresponding access rights.
    Now this folder structure has to be accessible for the "normal" users in a shared folder.
    This sample folder must be secured against changes from "normal" users BUT if it is copied it must keep all the set access rights.
    Question:
    What's the best way to do so?
    1) Set the protected flag of the most top level folder of this sample structure folder set at it's done?
    2) Use of a Apple Script to achieve this?
    3) Use of a Bash Script to achieve this?
    4) Can only be done as the admin user which did setup this structure?
    5) Other best effort suggestions to achieve this?
    Known things:
    - chmod is involved to do it on terminal
    - It must be possible as the system does something similar when a new user is created.
    Thank you in advance for anyones help and suggestions.
    Any note and suggestion for easy-to-read and illustrated documentations are welcome.
    Kind regards
    Tho

    Take a closer look at the ditto(1) man page in Terminal.

  • Copy Folder Structure from Explorer into Outlook 2013

    Hi,
    I have just spent approx 3 months designing an Enterprise Classification Scheme, and built a folder structure in Explorer that I want to replicate in Outlook.
    I thought it would have been as simple as copy and pasting from Explorer to an Outlook folder however when I attempt to do so I get the following error:
    "Only files or objects can be attachments. x:\xxxx\xxxxx\xxxxx is a folder structure and cannot be attached."
    Surely there must be a simple way of doing this so I don't have to manually recreate and name 442 folders in Outlook.
    Any advice greatly appreciated.

    I tried the Outlook tool with no luck.  It ran and looked as though it was doing something but no folders were created.
    I did a bit more of a search around and came across a spreadsheet that works perfectly for making folder structures on Network drives.  Anyone up to having a look at the VBA in the  spreadsheet and modifying it to make shared folders in outlook
    2013?
    Sub CreateFolderStructure()
    'Create folder for all vlues in current sheet
    'folders will be created in folder where the excel file was saved
    'folders will be created from first row, first column, until empty row is found
    'Example expected cell structure: (data starting in current sheet, column A, row 1)
    'folder1    subfolder1  subsubfolder1
    'folder2
    'folder3    subfolder3
    '           subfolder4
    'this will result in:
    '<currentpath>\folder1\subfolder1\subsubfolder1
    '<currentpath>\folder2
    '<currentpath>\folder3\subfolder3
    '<currentpath>\folder3\subfolder4
        baseFolder = BrowseForFolder
        If (baseFolder = False) Then
            Exit Sub
        End If
        Set fs = CreateObject("Scripting.FileSystemObject")
        For iRow = 2 To 6500
            pathToCreate = baseFolder
            leafFound = False
            For iColumn = 1 To 6500
                currValue = Trim(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Worksheets(ActiveCell.Worksheet.Name).Cells(iRow, iColumn).Value, ":", "-"), "*", "-"),
    "?", "-"), Chr(34), "-"), "<", "-"), ">", "-"), "|", "-"), "/", "-"), "\", "-"))
                Worksheets(ActiveCell.Worksheet.Name).Cells(iRow, iColumn).Value = currValue
                If (currValue = "" And leafFound) Then
                    Exit For
                ElseIf (currValue = "") Then
                    parentFolder = FindParentFolder(iRow, iColumn)
                    If (parentFolder = False) Then
                        Exit For
                    Else
                        pathToCreate = pathToCreate & "\" & parentFolder
                        If Not (fs.FolderExists(pathToCreate)) Then
                            CreateDirs (pathToCreate)
                        End If
                    End If
                Else
                    leafFound = True
                    pathToCreate = pathToCreate & "\" & currValue
                    If Not (fs.FolderExists(pathToCreate)) Then
                        CreateDirs (pathToCreate)
                    End If
                End If
            Next
            If (leafFound = False) Then
                Exit For
            End If
        Next
    End Sub
    Function FindParentFolder(row, column)
        For iRow = row To 0 Step -1
            currValue = Worksheets(ActiveCell.Worksheet.Name).Cells(iRow, column).Value
            If (currValue <> "") Then
                FindParentFolder = CStr(currValue)
                Exit Function
            ElseIf (column <> 1) Then
                leftValue = Worksheets(ActiveCell.Worksheet.Name).Cells(iRow, column - 1).Value
                If (leftValue <> "") Then
                    FindParentFolder = False
                    Exit Function
                End If
            End If
        Next
    End Function
    Function BrowseForFolder(Optional OpenAt As Variant) As Variant
         'Function purpose:  To Browser for a user selected folder.
         'If the "OpenAt" path is provided, open the browser at that directory
         'NOTE:  If invalid, it will open at the Desktop level
        Dim ShellApp As Object
         'Create a file browser window at the default folder
        Set ShellApp = CreateObject("Shell.Application"). _
        BrowseForFolder(0, "Please choose a folder", 0, OpenAt)
         'Set the folder to that selected.  (On error in case cancelled)
        On Error Resume Next
        BrowseForFolder = ShellApp.self.Path
        On Error GoTo 0
         'Destroy the Shell Application
        Set ShellApp = Nothing
         'Check for invalid or non-entries and send to the Invalid error
         'handler if found
         'Valid selections can begin L: (where L is a letter) or
         '\\ (as in \\servername\sharename.  All others are invalid
        Select Case Mid(BrowseForFolder, 2, 1)
        Case Is = ":"
            If Left(BrowseForFolder, 1) = ":" Then GoTo Invalid
        Case Is = "\"
            If Not Left(BrowseForFolder, 1) = "\" Then GoTo Invalid
        Case Else
            GoTo Invalid
        End Select
        Exit Function
    Invalid:
         'If it was determined that the selection was invalid, set to False
        BrowseForFolder = False
    End Function
    Sub CreateDirs(MyDirName)
    ' This subroutine creates multiple folders like CMD.EXE's internal MD command.
    ' By default VBScript can only create one level of folders at a time (blows
    ' up otherwise!).
    ' Argument:
    ' MyDirName   [string]   folder(s) to be created, single or
    '                        multi level, absolute or relative,
    '                        "d:\folder\subfolder" format or UNC
    ' Written by Todd Reeves
    ' Modified by Rob van der Woude
    ' http://www.robvanderwoude.com
        Dim arrDirs, i, idxFirst, objFSO, strDir, strDirBuild
        ' Create a file system object
        Set objFSO = CreateObject("Scripting.FileSystemObject")
        ' Convert relative to absolute path
        strDir = objFSO.GetAbsolutePathName(MyDirName)
        ' Split a multi level path in its "components"
        arrDirs = Split(strDir, "\")
        ' Check if the absolute path is UNC or not
        If Left(strDir, 2) = "\\" Then
            strDirBuild = "\\" & arrDirs(2) & "\" & arrDirs(3) & "\"
            idxFirst = 4
        Else
            strDirBuild = arrDirs(0) & "\"
            idxFirst = 1
        End If
        ' Check each (sub)folder and create it if it doesn't exist
        For i = idxFirst To UBound(arrDirs)
            strDirBuild = objFSO.BuildPath(strDirBuild, arrDirs(i))
            If Not objFSO.FolderExists(strDirBuild) Then
                objFSO.CreateFolder strDirBuild
            End If
        Next
        ' Release the file system object
        Set objFSO = Nothing
    End Sub

  • Using robocopy to copy folder structure only

    Hello,
    I'm trying to do the equivalent of xcopy /t /e in robocopy.  That is, I only want to copy the folder tree, not the files themselves. 
    -Charlie

    Glad to hear your issue has been solved.
    Regards,
    Leo  
    Huang
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Mass uploading of folder Structure?

    Dear Expert,
    As per client requirement, we needed feasibility of Upload of multiple documents with folder structure. Suppose we had folder structure with different files in folders available in CD, which we wanted to copy/create folder structure in Content server as available in CD. Is there any BAPI is available.
    While Searching for this requirement I found bapi_document_create2 u2026.but I want to know with this can I directly copy folder structure available in CD to Content Server.
    I wanted to know, as per requirement will it be possible to create folder structure from CD?
    Thanks in advance..

    Hi Sam,
    as explained in your SAP customer message the BAPI_DOCUMENT_CREATE2 could be used for this requirement. If you want to hand over document structure data please fill table DOCUMENTSTRUCTURE. For further information on the BAPI functionalities please see SAP note 766277.
    Best regards,
    Christoph

  • Copy playlist to usb-stick and keep folder structure

    Is there an easy way to copy a playlist from iTunes to a USB-stick (for use in the car)? The folder structure of artist > album> track should be kept.
    If you simply use drag and drop, iTunes copies all songs into one folder.

    "Files to Folder Scripts
         This is a collection of two scripts: Alias Files to Folder... which creates an alias of each file of the selected iTunes tracks in a user-selected location, and Copy Files to Folder... which will copy the files of the selected iTunes tracks to a user-selected location."
    It appears the first one  just puts an alias in a single folder.  The second one looks like it copies the files to a single folder which is pretty much what the OP is doing already with dragging.

  • Script to copy data to new folder structure

    I am working on a project where I need to migrate many TB's of data into a new folder structure.
    I have exported the one of the folders including all sub-folder with treesize and exported it to excel.
    So the source folder structure is in column A, which has several thousands lines and I have put the destination folders in column B.
    Now I would like to script the data copy for every line the source folder is listed in column A and the destination folder is listed in column B.
    This has to be done for all containing sub folders and files of course.
    Has anyone got an idea how the script should look like ?
    I can export the excel sheet to CSV, but then my knowledge stops unfortunately.

    Win32 Device Namespaces
    The "\\.\" prefix will access the Win32 device namespace instead of the Win32 file        namespace. This is how access to physical disks and volumes is accomplished directly, without going through the       
    file system, if the API supports this type of access.  You can access many devices other than disks this way        (using the
    CreateFile and        
    DefineDosDevice functions, for        example).
    https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx
    ¯\_(ツ)_/¯

  • Backup-Restore v Copying itunes folder structure to a backup drive.

    Is there any difference whatsoever in performing a backup to DVD and then a restore, and copying the itunes folder structure to a back up drive and using that to restore? (Assuming you know how)
    I know there are other files involved in itunes that aren't in the main folder, such as cd names database files and other hidden files. Do these get backed up during a proper DVD backup from the file menu and are they necessary really?
    I like the convenience of simply copying the folder structure as a means of backup but don't want to miss out on important files that may be backed up the recommended way with DVD's.
    Is it a big deal if I don't use DVD's and just continue to copy the folders? What am I missing out on by doing this?
    Also - Is it wise to un authorize my computer before I perform a reformat and re install of the entire operating system and iTunes?
    -Frankie

    1. yes you should deauthorise your PC before reinstalling Windows, then reauthorise after reinstalling itunes.
    2. Assuming you have the default arrangement for iTunes i.e. Music\iTunes\iTunes Music with all your music files in iTunes Music.
    You can backup iTunes by copying the iTunes folder in Music with all its subfolders to an external drive.
    Then after you have reinstalled Windows and iTunes, you can replace the empty iTunes folder created at installation with the one from backup.

  • WEIRD! AVCHD folder structure saved on HD appears different in Mountain Lion?

    I saved all my old SD card contents fully onto an external hard drive.
    Since saving I have upgraded from Snow Leopard to Mountain Lion.
    Today I opened  the saved SD cards to find that the folder structure had altered dramatically.
    It appears to be simplified and the "Private" folder is no longer a folder but a QT type file which when double-clicked opens in QT Player.
    All the clips appear to be there and capable of being used but everything is drastically different.
    Any idea what has happened  .  .  .  .  is it ML related?

    There seems to be no way of importing AVCHD video without copying it.
    When it's in the camera you need to copy it but if it's stored on a HD there is no need but you are given no choice.

  • Automatic creation of KM folder structure from xml pattern

    Hi all,
    is it possible to create a KM folder structure automaticly, following the tree structure of an xml document?
    For example:
    an xml-document with following content:
    <item id=1 level=0>abc</item>
    <item id=2 level=1>aaa</item>
    <item id=3 level=1>bbb</item>
    <item id=4 level=2>ccc</item>
    <item id=5 level=0>def</item>
    I'd like to create a KM folder structure like this:
    - abc
    ---aaa
    ---bbb
    ccc
    - def
    Does anyone have any idea to implement this scenario in KM?
    Much obliged!
    Steffi

    Not currently - well at least not easily - there is always the programatic approach.
    I would suggest you can create an FSDB repository - this means you can then create your structure in the file system using standard desktop tools.
    After that you could do a mass copy back into the db based KM repository if you so wished.
    For your downstream systems you could always ICE the data across meaning you dont have to create everything again.
    Haydn

  • How do i get my folder structure in Lightroom to replicate my hard drive folder structure?

    My issues is that post-import from Aperture, my folder structure in Lightroom does not match my folder structure on my hard-drive.  In particular, rather than be structured as in my hard-drive:
    2015 (folder)
    -> 2015-01-30 (sub folder)
    -> 2015-02-15 (sub folder)
    -> 2015-03-03 (sub folder)
    All of the photo folders are listed individually as:
    2015-01-30
    2015-02-15
    2015-03-03
    In addition, a number of folders have been created in the form 01a2a201aff9c8c684928629ea41221c0fa5930ab7 where no folder exists on my hard drive in this form and the image contains the right date meta data.
    As I've got photos dating back to 2005 and a lot of different days taking photos, this is making the folders view unmanageable.
    I completed the Aperture migration in two stages (as i did not have sufficient space to replicate images in move across to Lightroom)
    1.  Moved Aperture original images from being References to Managed (with the file structure above)
    2.  Then used the Lightroom plug in to import the library from Aperture (which has successfully copied across meta data and my folder structure + edits from Aperture)
    Does anyone know how to fix this issue?  In particular:
    1) Adding in 2015 folder level to structure?
    2) Removing all off the 01a2a201aff9c8c684928629ea41221c0fa5930ab7 folders?
    Many thanks in advance,
    Joe

    In the "folders" pane, right-click on the folder you see and select "show parent folder". Repeat as needed.

  • Syncing apps FROM iPhone TO ITunes and retaining app folder structure

    How can you retain the app folder structure you have painstakingly created on your iPhone (OS4.3) when syncing apps with iTunes?
    It seems that it only works the other way - i.e. creating the structure in iTunes and having that copied to the iPhone when syncing apps.
    I know this has been posted in various ways before, but there seems to be no answer, and Apple appear either not to understand the question, or its importance to so many users.
    Anyone found a way of doing this yet - or Apple - please can we have this fixed?

    Thanks Mr. Gnome I was aware of that - it was a rhetorical question as far as Apple are concerned, but I do hope someone out there may have found a way around this illogical glitch.
    By the way, I think you meant your link to be...
    http://www.apple.com/feedback

  • How to check In a file with folder structure

    Hi,
    Is it possible to check in "a file with its complete folder structure".
    For Ex: folder A contains Folder B and B contains a file , Then is there an option to check in the file in content server with the same structure A-->B-->file.
    Thanks In advance.

    JRS, this will copy ALL the files and folders from folder A to the content server.
    If he only wants to copy file A that is inside folder B than your way is somewhat overkill unless you are sure that the file is the only one in the complete structure but that i doubt...
    I haven't checked it before but perhaps someone can tell if this is possible...
    If you check in a file, perhpas you can get the original file and foldername from the metadata. If this is possible, you can create your own code that hooks on the check in and then create a directory or just move the file in the directory.
    I have written such a component but it's based on some custom metadata we use, not on the original filename.
    If i find the time, i will try some things and tell you if it works

  • Missing folder structure in zip file from Theme Editor

    Hi all gurus!
    I have an interesting problem with this background: I want to change the customer brand image in the portal header and do som other modifications. For this reason I have made a copy of one of the standard portal themes, as I'm supposed to do, and I have downloaded that zip file from the portal.
    When unzip this file i get the following files: its.zip, log.html, metadata.properties, portal.zip and upgrade.xml. As I have understood it that is the correct content. Now I'm supposed to unzip the file "portal.zip" and reach amongst other folders the one named "prtl". In this one there is a folder named "images" and under that one is "header" found and in THAT folder the change of picture is done.
    Now for the problem: when I unzip "portal.zip" I just get the content of some property file, NO folders what so ever! If I try to unzip "its.zip" I can see the folder structure under that folder!
    If I open the structure with Total Commander I can see the missing folders! But I can't do the copying of the image, the whole structre gets duplicated when I save! I thought the zip file was corrupt so I made another copy and downloaded it but with the same result!
    Has anyone had the same problem???
    Best regards
    Benny Lange

    Problem solved! By 7-zip. It was actually XP's integrated zip tool that just didn't show the underlaying structure. And Total Commander also did the work if used in the same way as 7-zip, but to edit the second level zip file directly did not work as TC opened that file in a temp directory instead of continuing at the level of the first zip file. That kind of editing directly in a file two zip levels down actually worked in TC 6.x but now I have 7.05 and perhaps things has changed.

Maybe you are looking for

  • Adobe Document Service Configuratio issue

    Hi, I've been working on configuration of Adobe document service on a sneak preview version and have followed all the steps. At the end, when I try to access an interactive adobe form, I'm getting an error. The error details are given below. The end

  • Gift an App problem: can't pay with itunes credit!

    Hello, this morning i tried to gift an app to a friend of mine, i've put his email adress in the gift an app page but then itunes asked me to put a new payment option... the problem is that i have 13€ on my itunes account and the app costs only 0,79

  • My icon has disappeared - how do it get it back

    I no longer have an icon on my desktop but can access Firefox from the program menu. How do I get my Firefox icon back?

  • Re: Best Way to Backup iTunes Library

    Hello friends : My iTunes music library is getting rather large and I feel it's time to "properly" back it up to an external hard drive. I understand that you can back up your iTunes music folder to an external hard drive by the simple old "click and

  • Mail looking on port 0...

    Hi all, I've read a few posts by people having the same problem as me with Mail checking port 0. I've tried all the posted fixes but nothing works. I've posted elsewhere that I can resolve the problem by quitting and re-opening Safari, or if Safari i