Import Scenarios - Keep folder structure

When I import a scenario folder the scenarios get inserted into the root of the Scenario pane and lose the folder they where in - Is this normal behaviour ? Is there a way to keep the folder structure?
Its a royal PITA to drag and drop again as im working with a work repos over a WAN and its slow.
Cheers
Alastair

I agree that its a pita and it is the only behavior. With several developers working in parallel, we have this problem all the times. A few people wont approve touching the Work repository directly but I would suggest creating a procedure to update the Work repository to update the parent id of the scenarios that dont have any parent id set. This can be done after you import all the scenarios and they stick on the root level.

Similar Messages

  • Can I import and keep folder structure?

    I have thousands of pics and videos.  I'm willing to buy in to the whole iCloud experience (literally), but in my small experiments, I couldn't see how to import and KEEP the folders containing numerous pics.  For example, if I have 1000s of FAMILY pics, TRAVEL pics, and FRIEND pics, all in separate folders.   Can I import these pics (currently on Onedrive; I assume I can't import direct from Onedrive to iCloud.com?) keeping the separation and folder breakdown I worked so long to organize?  Every attempt I've made, strips the folder and throws all pics in together.  Yes, I know we can use clever tricks like geotags and dates to separate the photos to an extent.  But most of my photos don't contain that metadata.  And moreover, I've already manually done the work to my liking.  Any ideas?

    Import your folder structure to iPhoto, and then migrate the iPhoto Library to Photos.
    iPhoto will create an event for each folder you import and name it like the folder. You can simply drag the whole folder structure onto the iPhoto icon.
    When you open the iPhoto Library in Photos, Photos will create an album for each iPhoto event.

  • Can I keep folder structure at import??

    Hi,
    I am a new User auf Itunes. On my harddisk i have several folders sorted by topics. Can i keep this folder structure when i import the songs into itunes? When I tried it yesterday all songs were in the main folder in itunes. I dont want to sort these songs again.
    Is there any possibility to keep this folder structure?
    thank you !!!!!!
    ingo

    If you have music organised in folders before you installed iTunes and you want to keep you music where it is, go to:
    Edit>Preferences>Advanced>General
    Find the check box "Copy files to iTunes Music folder when adding to library"
    If you uncheck this box, iTunes just stores the location of the file and does not copy it into the iTunes Music folder.
    There is also a check box called Keep iTunes Muisc folder organised. If this box is checked, iTunes organises files in the iTunes Music folder into folders by Arist / Album. It does nothing outside the iTunes Music folder.
    It is important not to move files in the iTunes library yourself or iTunes will loose them. iTunes does not watch folders like some other music players.

  • How do I move photos in a Smart Collection and keep folder structure?

    HI there I am on a trial of Lightroom and loving it so far.  One seemingly simple task I would like to try out is moving all my RAW files (which are all mixed up with JPGs and PSDs to a new location and keep the current folder structure.
    Currently I have files strcutured like this: <main disk>\<year>\<month>\<filename>.cr2 and I would like to move these to <different disk>\<year>\<month>\<filename>.cr2
    The Export functions look as if they will put them all in to one big folder?  Any ideas?
    Many thanks in advance.

    There are several approaches to this problem. You could do this via the Folders panel in LR. You can do just about everything in the Folders panel that you can do in Explorer or Finder. Just create folder and drag and drop.
    Another way is to do this outside LR use Explorer (Windows) or FInder (Mac). after you're done then go back into LR and tell LR where to find the moved files. Depending on how many you have this could be a bit tedious.
    Another method is to choose the files you want then Export them as a Catalog. When you do this be sure to include the option to export the negatives. Point the new catalog at you other drive. It will recreate the folder structure during the export. Then remove the images from your present catalog. Don't delete from disk just remove. Now import from catalog and choose the newly exported catalog. This time choose the option to add the files without moving them. Once you are sure everything is back and is fine you can use Explorer or Finder to go into your original file structure and delete the files that were moved to the new drive.  Be careful to only choose the moved files. If you are separating the RAWs out this should be relatively easy.
    I hope that helps!

  • Importing images with folder structure

    Hi
    I want to import images into Lightroom that are on my hard disk but keeping the existing folder structure.  When I try this, even if I tick include sub folders, the images import but all within the parent folder - all sub folders are ignored.
    Is there a way around this?
    Many thanks

    Are you selecting "Add" at the top of the import dialog when importing?  That preserves folder structure by adding them to the Lightroom catalog in-place.

  • Home sharing photos - keeping folder structure

    Hi,
    I am sharing my photos from my Windows 7 PC to my Apple TV (latest model). Is there a way to keep my folder structure? I have over 17 000 photos sorted into folders, and having them all listed on a single screen is simply ridiculous. Surely I can do this?
    I am using iTunes 10.6.1.7
    Cheers
    Alix

    Alex,
    I understand completely, this drove me nuts as well.
    I wrote a small Python program to take advantage of Junction Points to hack a workaround. Since you're a lecturer in Computer Science, you shouldn't have any trouble taking this and modifying it as you need. It allows you to leave your pictures organized as you wish (mine are YYYY/MM/Event) but creates a set of junction points in a separate location that provide the separation at one directory level.  For example:
    original picture folders:
    2012\09\Labor Day
    2012\09\Something Else
    would create the following junction points all in one directory and point them to the corresponding original folders:
    2012
    2012.09
    2012.09.Labor Day
    2012.09.Something Else
    I apologize for not following standard Python naming conventions and such, this was my first python program and I haven't gotten around to reading the recommendations yet.
    The program relies on Junction Points created using:
    http://technet.microsoft.com/en-us/sysinternals/bb896768.aspx
    import os
    from subprocess import call
    def getTargetDirsToDelete(directory, namesToIgnore) :
              # This could be one line, but this was my first Python venture and I needed to easily test each step
              dirs = os.listdir(directory)
              dirs = [os.path.join(directory, item) for item in dirs ]
              dirs = [item for item in dirs if os.path.isdir(item)]
              dirs = [item for item in dirs if not os.path.relpath(item, directory) in namesToIgnore]
              return dirs
    sourcePath = 'Drive:\\FolderWithPictures'
    targetPath = 'Drive:\\FolderForJunctions'
    junctionPath = 'Drive:\\PathToJunctionFolder\\junction'
    #remove old target dirs
    oldTargetDirs = getTargetDirsToDelete(targetPath, ['iPod Photo Cache'])
    for oldTargetDir in oldTargetDirs:
              print ("Removing Junction " + oldTargetDir)
              call([junctionPath, "-d", oldTargetDir])
    # get sourceDir to ignore
    sourceDirToIgnore = os.path.join(sourcePath,'iPod Photo Cache')
    for dirpath, dirnames, filenames in os.walk(sourcePath):
              if dirpath != sourcePath and not str.startswith(dirpath, sourceDirToIgnore) :
                        # get the full path of the junction point source
                        makeSourcePath = dirpath
                        # get the full path of the junction point target
                        makeTargetPath = os.path.relpath(dirpath, sourcePath)
                        makeTargetPath = makeTargetPath.replace('\\', '.')
                        makeTargetPath = os.path.join(targetPath, makeTargetPath)
                        print ("Creating Junction Point at " + makeTargetPath + " pointed to " + makeSourcePath)
                        call([junctionPath, makeTargetPath, makeSourcePath])
    Hope that you (or someone else) finds it useful.
    - Sean

  • Keeping Folder structure on Ipod

    Let's say I have 5 different folders in one of my directories -- each folder contained about 20 MP3's. I want to import these songs into Itunes while still maintaining the folder structure. In other words, once imported, I would like to be able to view the folders in the exact way that I view them on my PC.
    Would I have to create seperate playlists for every folder and then import songs into those specific playlists? Is there an easier way?

    After the playlists are created - is there a way to setup a synch so that any updated MP3's in my folders will automatically update the playlist?
    For example, let's say I have a folder called Bruce Springsteen with 13 MP3's. I created a playlist called Bruce Springsteen to keep the structure. Now I add another 2 MP3's to the Bruce folder. Would I have to manually import those 2 additional files to the Bruce playlists?
    Also - how can I set the Ipod to NOT synch when I plug it in. Since I have to create seperate playlists for each folder, I would rather do it manually so as to not mess up the structure.
    Thank you.

  • Sharing (Exporting) and keeping folder structure - possible?

    I have been amassing a collection of family pictures going back into the 19th century. They are stored in iPhoto in folders by year (e.g. 1967 is a separate folder). I would like to export this as files but keep the folder structure so that relatives can just look in the 19xx folder for all the pictures from that year. Is there any way to export pictures and maintain the file structure used in iPhoto? If this doesn't work exporting original format photos is there any way to export from iPhoto and have it reflect that structure (so relatives on Mac or Windows machines can view/use them)?
    TIA

    Arthur,
    I have not come across any applescript and I did just search again.
    What I did come across was a program called iPhoto Album Extractor. It is really meant to extract albums into a folder from a damaged iPhoto Library that cannot be opened.
    i downloaded it and tried it out to see if it would be a faster way to get your year albums exported. It is really quite fast.
    Download the program and open it.
    Choose the path by navigating to the iPhoto Library folder and choosing it.
    Your albums will quickly be displayed in the left column.
    Make a new folder on your desktop and label it albums.
    Now highlight the album in the left column and choose "extract"
    In the next window choose the folder on the desktop and then hit open.
    The images in the album will be extracted/copied into a folder with the name of the album into that folder on the desktop. It is really quite fast. I did this while iPhoto was closed.
    iPhoto Album Extractor
    Lori

  • Export multiple folders while keeping folder structure

    I want to export multiple folders at one time.  I select the folders in LR and then all the photos in those folders.  When I look at the exported photos they're all lumped together (and the keywords are gone, if I do one folder at a time the keywords remain)
    Any way to keep the folder structure while exporting multiple folders?
    Thanks

    You can use a publish service such as this one: Jeffrey Friedl's Blog » Jeffrey’s “Folder Publisher” Lightroom Plugin

  • 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.

  • Converting Managed to Referenced: how keep folder structure?

    I am considering converting my managed lib to referenced, and have been experimenting with a duplicate library.
    I highlighted "Projects" at the top of the Library view, and then relocate masters.
    In the Subfolder Format box I chose "Project name"
    I did the test relocation, and all the projects are in the new location in a single alphabetical list. My Folder year stucture has not carried through.
    I see I could have used "Image/year/month" which might have kept the years, but would it have kept my projects intact?
    Also some of my projects have images for different years in them, which presumably would be broken up by a "image year month" option".
    Any inputs very welcome.

    Ah I hadn't realised you wanted to relocate the entire library in one pass.
    Yep folder names within Aperture sound like a great solution.
    You should probably set up and test a small sample library before you press play though.
    So you could arrange your projects in Aperture a bit before your started, grouping projects into logically named and ordered folders.
    You could then set one of two presets: foldername/projectname or even foldername_projectname
    The first should create a folder on the finder named after the Aperture folder followed by subfolders named after the project name contained within it.
    So root level folder will be 2010 with subfolders project F and project C (you could add a counter to order them too)
    The second should produce folders at the same finder level but with a naming structure containing both the foldername and the project name. So if the foldername was 2010 then your finder folders would be named 2010_project C, 2010 project F etc.
    You could then jump back into Aperture and rename your folders and projects as before!
    M.

  • How to import photos from a folder that contains hundreds of folders to Photos keeping the same folder structure?

    How to import photos from a folder that contains hundreds of folders to Photos keeping the same folder structure?

    You'll have to do that manually, i.e. export each album of photos to a folder with the same name located on your hard drive via  the File ➙ Export ➙ File Export menu option.
    OT

  • How do I keep folder/album structure on import?

    I have a large directory tree of images I'd like to import into iPhoto 6.
    Like this:
    Nature / California / Big Sur / <pictures>
    Nature / California / Lake Tahoe / Sunsets / <pictures>
    Nature / California / Lake Tahoe / Snowboarding / <pictures>
    Nature / Iowa / Dunning Spring / <pictures>
    I'd like to get each folder in the tree to become a folder in iPhoto, except that if the folder only contains pictures it should be an album. I was hoping to use Automator for this, but it's iPhoto actions are extremely limited.
    The import logic I'd like to use is fairly straightforward. If the folder contains other folders, make a folder in iPhoto and import it's contents into that folder. If the folder contains pictures and other folders, make an album called "unsorted' for those pictures, and folders for the subfolders, and repeat for each subfolder.
    I only need this for myself (not creating an app for general use), but I have a lot of pictures to import, and this just seems like something which could be automated. Would Applescript be useful for something like this?
    PowerMac G5   Mac OS X (10.4.5)  

    Hi rob,
    There is no applescript for this that I know of.
    You might want to use the new option in iPhoto 6 to not copy files into iPhoto when they are imported. This way you can keep your own folder structure in the Finder. I have not used this feature so I can't tell you any more about it. Old Toad, our forum guru has so he will probably jump in and tell you more info.
    Here is how you would do it if you choose to copy the photos into iPhoto when importing them.
    In a nutshell: Drag each folder of images into the source pane to create a roll and album at the same time. Then create new folders to correspond with your folders and drag the appropriate folder into the folders and appropriate albums into the folders.
    Longer version;
    Importing Images from the hard drive, CD, or DVD
    To import a folder with subfolders of images maintaining the same organizational structure (or close to it):
    Drag the folder into iPhotos viewing area.
    A film roll will be created with each sub folders name. To view the rolls in the Library you need to first go to the menu bar and choose View>by film rolls.
    To make each roll into an Album, highlight the tile of the roll
    Go to File>new album from selection.
    You will now have an Album in the source column with the images from that roll. Do this for each roll if you want them to be an Album. This is your choice.
    Next, go to the menu bar and hit File>new folder
    Name this new folder with the year or whatever the name was of the Parent folder containing the subfolders that you had dragged into iPhotos viewing area.
    Next drag all the Albums into the respective new Parent folder you just made.
    Albums- collection of images from one roll or many rolls. The Albums will be listed in your source column when you make them. The albums only contain placeholders for the images that are still in the library. They are not duplicates.
    Rolls- rolls are created when you import folder of images. It will be given the name of the folder you are importing.
    Rolls are also created from each import from your camera. You are given the option to name the roll at import.
    Folder-a folder you create manually using the File>new folder command
    Folders can hold Albums, slideshows, books, another folder, etc.
    One other way you can import a folder of images and have an Album created for it as the same time it is imported as a roll in the Library view:
    Drag each folder of images into the source column of iPhoto. When you see the plus sign, drop it in the source column.
    An album will be created in the source column, and the roll that the album was created from will be in the library view window.
    Hope this helps!

  • How to import photos and keep album structure?

    Hi all -
    I had to do a clean install of OS X, but beforehand, I backed up my entire hard drive using Super Duper.
    Now, I want to import all of my photos back into iPhoto, but is there a way for me to do this and keep the previous album structure that I have? I tried dragging the IPhoto library folder into iPhoto and it imported the photos, but my albums are gone.
    Thanks for your help!

    Hi.
    Trash the iPhoto Library folder that you created on your Mac, or rename it "iPhoto Library damaged" if you may need some of its contents. Copy the iPhoto Library folder from the backup into your Pictures folder. Hold down the Option key as you launch iPhoto and select "Choose Library" from the dialog. Navigate to the good iPhoto Library folder and open. iPhoto should launch and open your library in exactly the same condition it was in when the backup was made. If all goes well you don't have to import anything.
    If the library is still missing items, you can try a database rebuild. Hold Command and Option while you launch, select the first 3 options in the dialog, and rebuild. This can fix a library with a slightly damaged database.
    If the library still isn't working you may have to create a new library (Option-Launch, select "Create") and import your Originals folder from the backup library. This will give you the pictures back without creating duplicates, but your albums and other items will not be recovered.
    Regards.

  • Import folder structure with MP3's with no tags from record collection

    Until now I have maintained data of my music cassettes and vinyls in a filemaker database. All 5000 MP3's are stored in a structure similar like that of iTunes: for example all music of female artist is store like this
    females/first letter of artist = "B"/Bassey Shirley/Album Name.
    I know that I can import one by one these folders to iTunes and do all the tag-entries manually. But I wonder if there was an easier way ... for example by having iTunes accept a given order structure = at least that with artist name and artist's albums. Yet this does only work if I have added tags prior to moving those folders to iTunes "automatic entry folder".
    As an alternative I could use my Filemaker data ... provided someone of you folks has an idea of how to.
    As a last resort I could imagine that this was possible with AppleScript - yet I am afraid that it would be too difficult for me to write such a script. If someone has an idea where I can obtain a script (for free or for money) I would appreciate any feedback.

    May be I should give an update
    My challenge is to transfer the MP3-files from some 800 Vinyl. After first going along with iTunes structure I decided to use the datafields my way. Main reasons: I wanted to keep the structure handy and I wanted to use primarily those fields as keys which can be searched for and structured alphabetically in iPod. You can for example list all interprets by alphabet but not the "work" may be it is English "opus" or "creation". So my structure is like this:
    Titlenames = are the full names of the songs without leading short words like "a" "the"
    Interpret = Last name first name which allows to skip an entry under "Sorting"
    Interpret with only one title are also listed but in those cases I also use the field "Album interpret". Here I enter "other male" "other female" "other group" "other classic"
    When you list by interpret in iPod then only the "album interprets" show ... but you can still search for the real name. In other words the album interpret is always used if iTunes finds BOTH fields filled out.
    I always use the album-fields since otherwise iTunes makes up a "misc album" So I give each interpret at least one album which then has his name. In case there are several records (like I have some boxes with all records of Mozart or Strauss) I make up on box-album only and use the numbers for CDs and tracks. So record 1 becomes CD 1 of 8. Sound like much work but you can first enter all individual data and than select all MP3-lines of a box and enter the overwriting infos like "Mozart". Same goes for all my single 45RPM vinyls.
    As "Genre" I gave up on deciding is it Pop or R&B or HipHop. So I only use the above structure male, female, duet, group, chorus, instrumental, classic
    The BMP field is use to show the original numbers of my vinyls as given in my FileMaker Database. Works out fine and I can export it to Excel if needed.
    What I also found out is that you can force videos to show up as music. In that case you have to select under options the pulldown "MusicVideo". So you can even start to save your family videos as .264 files import them to iTunes / iPod and have a bette access than by using the direct videoplay function of the iPod.
    The Frontcovers of my vinyls I have drag and dropped in form of jpg's. You can even add several picture and you can do this with a selection of severals MP3-files (the pictures of my vinyls were taken with a Nikon 2200 and made smaller via batchrun in GraphicConverter).
    There is also another way to reduce clutter: All the less interesting musing has been marked as "compilation" which reduces the number of albums. So all my compilations of this kind start with "aa" (a single "a" would be ignored by iTunes in respect to sorting). Here is an example of my male "garbage collection":
    aa male english, aa male French, aa male German,
    or in "instrumental:
    aa instr flute, aa instr guitar, aa instr piano
    I am not saying that this is the best way - should rather give some ideas of how one can use that somewhat stubborn iTunes.
    Eventually I will do a "reverse engineering" by exporting the final iTunes database, importing it to FileMaker and recombine the data based on Vinyl- and tracknumber with the old database.

Maybe you are looking for

  • Filter view object by selected values from list of values

    Hello, I've the following problem with my ADF Application. I have three view objects in my application module. Two of them are connected via a view link. For example take users, who are connected to their departments. The remaining view object consis

  • I want a PDA for my confidenti​al data

    I have a LifeDrive, on which I keep my confidental data and always keep it off the grid.  (I also have a smart phone, which is, of course, connected.)  I would like to continue this set-up, but see that when I give up my last Windows XP machine, I'll

  • App messages not working

    whenever I try to activate the app messages, I get the following response: "The session can not be started. Check your network connection and try again", but the connection works with any other app, what can I do to solve?  Thanks.

  • HT5312 What is a rescue Email?

    What is a rescue email?

  • Adobe premiere pro cs4 capturing issue.

    The camera that I have is a sony hdv cam £1200, my pc is a quad core system with a firewire port on the back of the motherboard (new system).  My friend who used it previously used it on his apple mac and had no problems in capturing. This is the fir