Can I transfer files to sub folders in itune apps.i It seems I can't.

I have the app office2hd and I'm trying to transfer files and folders to the app from my win 7 pc within iTunes.
I can transfer files okay but when I try yo double click a folder to get it to open the sub folder under it, but it does not open.
I have had to open the folders and sub folders on my pc and transfer the files to the root of office2hd and then have to recreate the folders on the iPad in office2hd then move the files from he root to the folder they belong in. A very long process. With over 300 files.
Can anyone offer me a better suggestion please?
Thanks
Oz

Hi Stan, and a warm welcome to the forums!
Depends on several things...
If the Disk Format is MS/DOS, then yes.
If it is HFS+/Mac Os Extended, then only if you have MacDrive on your PC...
http://www.mediafour.com/products/macdrive/
Unfortunately DU can't fix all that much, your best bet is DiskWarrior.
http://www.alsoft.com/DiskWarrior/
If DW can't fix it, you might try Data Rescue II...
http://www.prosofteng.com/products/data_rescue.php
(Has a Free Demo to see if it could or not, but you'll need another drive to recover to).
Or FileSalvage...
http://www.subrosasoft.com/OSXSoftware/index.php?%20mainpage=product_info&productsid=1

Similar Messages

  • Jsp code (js code) to display(tree) the files and sub folders in a folder

    Hi all
    plz can any one send me the source in jsp or js to display in tree structure for files and sub folders in a folder.

    There are dozens of Javascript tree widgets available on the Internet. Some are free. Some are good. Google will find them for you.
    (The only relevance of JSP to your question is that yes, you can generate HTML that uses one of those Javascript tree widgets.)

  • Deleting Files and (sub)folders - how to

    Hi,
    Easy question. Easy there a vbscript to delete all files and (sub)folders, empty or not. Important, here is that the parent folder must NOT be deleted, only it´s contents. (important: this folder is located on a mapped share \\servername\foldername\)
    please help

    Hi,
    ' Delete All Subfolders and Files in a Folder
    Const DeleteReadOnly = TRUE
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    objFSO.DeleteFile("C:\FSO\*"), DeleteReadOnly
    objFSO.DeleteFolder("C:\FSO\*"),DeleteReadOnly
    Save the above code in test file with .vbs file extension. modify "C:\FSO" to your folder.
    Disclaimer: This posting is provided AS-IS with no warranties or guarantees and confers no rights. 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.

  • How do I delete file extensions on files in sub folders?

    I want to delete all file extensions on the files I have in several sub folders.
    If I highlight the files themselves in a folder and run "Get Selected Finder Items", then "Replace Text in Finder Item Names", then it works. However, how can I have Automator choose ALL files in ALL sub folders of a folder and then do it's magic on all those files at once?
    Thanks.

    Does the Notebook software accept aliases? If so, you could rename aliases instead of the main file, so that the original extensions are preserved.
    For your original question, you can use an action to get the folder contents, and adding a filter action will just give you the file names - for example:
    1) *Get Selected Finder Items*
    2) *Get Folder Contents* (repeat for each subfolder found)
    3) *Filter Finder Items* -- remove items that are folders
    4) *Replace Text in Finder Item Names*

  • Urgent ! How to Zip Folder Contents including files and sub folders.

    Hi, i need an urgent help from you regarding zipping the contents of any folder/directory including its sub folders and files to a .zip file. Please provide a code for ot or help me out. It is really very urgent.
    Thanx Waiting....

    This class can add a string or file to a ZIP. Maybe you can adapt it to do a directory and all its subfolders and files recursively:
    package demo;
    import java.io.BufferedReader;
    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import java.io.File;
    import java.io.FileReader;
    import java.io.IOException;
    import java.util.zip.GZIPInputStream;
    import java.util.zip.GZIPOutputStream;
    import java.util.zip.ZipException;
    * Demo for using the Zip facilities to compress data
    public class ZipDemo
        /** Default buffer size */
        private static final int DEFAULT_BUFFER_SIZE = 4096;
         * Compress a string
         * @param uncompressed string
         * @return byte array containing compressed data
         * @throws IOException if the deflation fails
        public static final byte [] compress(final String uncompressed) throws IOException
            ByteArrayOutputStream baos  = new ByteArrayOutputStream();
            GZIPOutputStream zos        = new GZIPOutputStream(baos);
            byte [] uncompressedBytes   = uncompressed.getBytes();
            zos.write(uncompressedBytes, 0, uncompressedBytes.length);
            zos.close();
            return baos.toByteArray();
         * Uncompress a previously compressed string;
         * this method is the inverse of the compress method.
         * @param byte array containing compressed data
         * @return uncompressed string
         * @throws IOException if the inflation fails
        public static final String uncompress(final byte [] compressed) throws IOException
            String uncompressed = "";
            try
                ByteArrayInputStream bais   = new ByteArrayInputStream(compressed);
                GZIPInputStream zis         = new GZIPInputStream(bais);
                ByteArrayOutputStream baos  = new ByteArrayOutputStream();
                int numBytesRead            = 0;
                byte [] tempBytes           = new byte[DEFAULT_BUFFER_SIZE];
                while ((numBytesRead = zis.read(tempBytes, 0, tempBytes.length)) != -1)
                    baos.write(tempBytes, 0, numBytesRead);
                uncompressed = new String(baos.toByteArray());
            catch (ZipException e)
                e.printStackTrace(System.err);
            return uncompressed;
         * Uncompress a previously compressed string;
         * this method is the inverse of the compress method.
         * Implemented in terms of the byte array version.
         * @param string containing compressed data
         * @return uncompressed string
         * @throws IOException if the inflation fails
        public static final String uncompress(final String compressed) throws IOException
            return ZipDemo.uncompress(compressed.getBytes());
         * Main driver class for ZipDemo
         * @param command line arguments - either string or file name to compress
        public static void main(String [] args)
            try
                for (int i = 0; i < args.length; ++i)
                    String uncompressed = "";
                    File f              = new File(args);
    if (f.exists())
    BufferedReader br = new BufferedReader(new FileReader(f));
    String line = "";
    StringBuffer buffer = new StringBuffer();
    while ((line = br.readLine()) != null)
    buffer.append(line);
    br.close();
    uncompressed = buffer.toString();
    else
    uncompressed = args[i];
    System.out.println("length before compression: " + uncompressed.length());
    byte [] compressed = ZipDemo.compress(uncompressed);
    System.out.println("length after compression : " + compressed.length);
    String compressedAsString = new String(compressed);
    System.out.println("length of compressed str : " + compressedAsString.length());
    byte [] bytesFromCompressedAsString = compressedAsString.getBytes();
    boolean isTheSameAs = bytesFromCompressedAsString.equals(compressed);
    System.out.println("compressed bytes are " + (isTheSameAs ? "" : "not ") + "the same as from String");
    System.out.println("length of bytesFrom...: " + bytesFromCompressedAsString.length);
    String restored = ZipDemo.uncompress(compressed);
    System.out.println("length after decompress : " + restored.length());
    isTheSameAs = restored.equals(uncompressed);
    System.out.println("original is " + (isTheSameAs ? "" : "not ") + "the same as the restored");
    String restoredFromString = ZipDemo.uncompress(compressedAsString);
    isTheSameAs = restoredFromString.equals(uncompressed);
    System.out.println("original is " + (isTheSameAs ? "" : "not ") + "the same as the restored from string");
    catch (Exception e)
    e.printStackTrace(System.err);
    MOD

  • Why can't I transfer files (music or ebooks) through iTunes to my iPhone? It's a new laptop but its authorized.

    I got rid of my old computer (too slow) and bought a new laptop. I have iTunes on my laptop but my phone doesn't let me transfer files to it. Help, please.

    It's impossible to restore anything from a device, unless it was purchased on iTunes.
    You must MUST MUST keep a backup of your library.
    To restore any purchases, go to the iTunes Store and click on "Purchases", which will let you download Music, Apps, and Books that were bought through iTunes. Unfortunately, anything that wasn't can't be transferred.
    iTunes will sync back purchased music from the iPhone when you plug it in.

  • I am new to iTunes. How do I transfer files of Powerpoint slides into iTunes from PC and then into my iPad for use at a meeting

    I am new to iTunes and the iOS in general, having just migrated from Android devices. Please advise as to how I can easily transfer files of Powerpoint slides in documents on my PC into iTunes, so that I can use Adobe or other app to get them into my iPAD to be able to use them at a conference. Thank you.

    Welcome to the Apple Community.
    I have had an iTunes account for a while, but never really taken the time to learn to use it.  Now I have two computers, with two different versions of iTunes, with content on one that I want to transfer to the other.  Or I'd like to directly access the older libarary from the new computer. 
    There are a number of ways you might achieve this. The following article(s) may help you.
    Moving your iTunes library to a new computer
    Alternatively you might just use home sharing to share the libraries.
    Plus I have some videos and audio CD's that I have never imported, and would like to bring them into iTunes and store on an external hard drive to keep from loading up my computer.  I have no idea how to accomplish all of this, and cannot find clear instructions on the website.  Is there a screen where I can access written step-by-step instructions?  I don't have the time or patience to play around and do it by trail and error.  Thanks.
    If you place a CD into the CD drive, iTunes will ask you if you want to import it.
    If you want iTunes to store content on an external drive, you need to tell it to do so, which you do at iTunes preferences > Advanced.

  • How to transfer files from ipod nano to itunes

    how do I transfer files from my ipod nano (5th gen) to a new computer.  All old files on old computer gone.
    Thanks

    You can only transfer music bought from the iTunes store in both directions, i.e. computer to iPod and iPod to computer.  Other music that you've ripped from CDs you own or that you've downloaded from somewhere other than the iTunes store can only be transferred in one direction, i.e. computer to iPod.  You cannot transfer it from iPod to computer.
    That said, there is however third party software that you can buy that will transfer files from the iPod to the computer.  Google will help you on that.  Also read this article:
    http://www.ilounge.com/index.php/articles/comments/copying-music-from-ipod-to-co mputer/P0

  • Is it possible to transfer files from my ipod to itunes?

    I'm trying to upload some new songs I got on my ipod from another computer onto my computer but it doesn't let me do it. Is there any way to do that or does it have to do with some legal thing?

    I don't know if this is supposed to be "legit" in this forum, but if you want to transfer your songs back to your iTunes or back them up on an external drive or cd there is an easy way. I actually used this method to transfer all the songs from my main iPod to my secondary iPod.
    1) With your iPod plugged into your computer, click on the iPod drive (usually E:).
    2) Make sure you have "View hidden folders" enabled in your computers settings.
    3) You should see a folder called "ipod_control." Go into that folder and then into the folder called "music."
    4) In the "music" folder will be a bunch of folders named F00 thru whatever. All your music is in these folders, but just named all crazy. If you drag the whole "music" folder into your iTunes library, iTunes should recognize them and sort them by artist, album, etc.

  • Creating/using folders in iTunes apps section for sync (not iOS folders)

    So I use my iPad mainly for work. I have about 600-1000 PDF documents I want to organize. I've been using Goodreader for years. The issue is the initial sync of the Folders, it's too clunky. I have to drag a million files into the Apps section of iTunes, and even if I have the folders already created and showing up in the little drag to box, I can't actually put files in that way through iTunes.
    Is there a better app or a better way to do this?

    Making folders in iBooks :
    http://m.youtube.com/watch?v=5NCTpGAik8M
    Emailing the iBooks :
    https://discussions.apple.com/thread/4459938?tstart=0
    Its fine if you dont want to use Sir.
    But you have the options in iBooks :)

  • How do i transfer files from my ipod to itunes?

    my computer crashed recently, but before it did i was able to save a number of uncorrupted media files on my ipod (some of my favorite albums in fact...). i installed a new hard drive and reinstalled itunes...but now i can't seem to get the music from my ipod back onto my computer! can anyone help me? i'd really appreciate it...

    See Buegie's post in this thread. There are several options described.
    Cheers!
    -Bryan

  • How to transfer files bought in Spotify to Itunes library? Cannot syncronize direct from spotify to my Ipod

    Hi.
    In Spotify I do have I list of music files I have bought .Now my account in Spotify are not active.
    I can still log on to Spotify on my computer Mac and play the musicfiles. But when trying to syncronize with my Aple Ipod or my Iphone 4 , the files does not come through.
    What do I have to do, to sync music in a playlist spotify on my Mac to my Ipod?

    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • I wonder if there is a site where you can file a complain against an Itunes App Developer that is robbing itunes customers?

    I've been looking for long time, a place in Itunes or Apple where i can report a wrongdoing by a third party Applications developer. Itunes directs you to the developer's site, I really don't think that will solve the problem.
    This has been happening with every game (application) the develop and Itunes promote in their Itunes store.
    If anyone knows where could i go in order to report these thieves i would be really grateful.

    I've been looking for long time, a place in Itunes or Apple where i can report a wrongdoing by a third party Applications developer. Itunes directs you to the developer's site, I really don't think that will solve the problem.
    This has been happening with every game (application) the develop and Itunes promote in their Itunes store.
    If anyone knows where could i go in order to report these thieves i would be really grateful.

  • Loosing Sub folders on Ethernet drive

    I hope someone has an anwser for this one.
    I can mount my Lacie 2TB ethernet drive and see all folders. I can open and work with files.
    Now the frustrating part. After a random amount of time (2,5,20 minutes) of inactivity on
    my Imac if I back out to the top level of the drive I can still see my folders, but if I open
    any folder, I will have no files or sub folders showing. The only way I can see subfolders is to
    unmount the drive and then remount. This is not a problem previous to 10.5.
    Now like said this random during the day.

    Once you change iTunes prefs -> Advanced - iTunes music folder location to the external then File -> Library - Consolidate, go to the iTunes folder and delete ONLY \iTunes music\ folder.
    Note that the external drive must be connected and mounted before launching iTunes.

  • Sub folders for pics to be displayed on iPad?

    First time post, scanned through didn't see a match.
    Scenario: MacBook Pro has folder with pictures called Trips. Under Folder Trips, there are subfolders called Rome, England, New York, etc.
    When I synch with iPad 2 I only have one big folder with ALL the pics of EVERY trip ever taken...there are NO subfolders displayed.
    Question - Is there a way to display each trip individually on the iPad without moving the directory structure on the MacBook Pro? They are logically organized on the MacBook...just not on the iPad.
    Thanks in advance.

    What you are describing is the normal behavior when you sync photos from a folder on your computer.
    If you were to create individual albums (named Rome, England, etc.) for the photos and organize them the way you want to in iPhoto, then sync to the iPad, they will be displayed that way. You can't do exactly what you are trying to do without doing some work in iPhoto. That folder you are syncing from will not be divided into those subfolders any other way if you sync.
    You do have the option of using a third party app to sort photos on the iPad - including the use of sub folders. One app that I know of is called Photo-Sort. Unless you recreate the folder (albums) in iPhoto, you will have to use a third party app.
    Message was edited by: Demo

Maybe you are looking for

  • Problem with Sound in iPhone 4

    REcently my iPhone 4 8GB is behaving strangely with sounds. I regularly use the mute button to silent the phone at my workplace. The phone remains on mute even after unmuting it from the side button. Then after sometime it automatically comes back. T

  • How to add new fields to a data extract

    The following data extract program generates an output file which is displayed using a publisher template as a check format report. Oracle Payments Funds Disbursement Payment Instruction Extract 1.0 How would I add new fields to the generated file? I

  • Acrobat Pro 9.5.1 Document Properties glitch

    Hi, When trying to view the document properties in Acrobat Pro 9.5.1 I get the below screenshot. The box is tiny and so small nothing can be viewed. I have to press ESC to close the window. I can only use ALT+SPACE to move  it also. PC config: Generi

  • Purchased songs not listed as purchased

    About a year ago, I bought a couple of songs off itunes. Recently, I wanted to buy the rest of the album. When I got to the page, I noticed that the itunes store showed no evidence of me buying them in the first place(including on my "purchased" list

  • Help on use of minus set command

    Hi everyone, I have a challenge using minus to eliminate one-for-one occurence of records between 2 tables. The second table can contain duplicate entries. What I want is - for every single record in table 1, I want to minus a single occurrence of th