How do i make new folders in the photo files

how do i make new folders in the camera on the i phone

If you are syncing from a folder on your PC, drag the images you want into a folder on your computer. If you want images to appear in separate photo albums on your device, create folders inside the main folder and drag images into the new folders.
If you are syncing from a photo application on your PC, use it to create albums and then select those albums to sync.
See this for details:  iPhone, iPad and iPod touch: Syncing photos via iTunes, http://support.apple.com/kb/HT4236

Similar Messages

  • How do you make multiple folders in the photo app-

    the question speaks for itself.also, how do you sync multiple albums onto the phone?

    The way I sync folders is this (I know it may not be what you are looking for).
    But in iTunes you can pick a folder to sync to. For me I made a specific folder just for my iPhone.
    Any pictures I want on my iPhone I put in that folder (copies).
    And then in that folder you can create subfolders (to organize). Note though you can only go 1 subfolder deep. You cannot put a subfolder in a subfolder.
    So for example:
    C:\DATA\iPHONE This is the folder for my syncing.
    I can create
    C:\DATA\iPHONE\FAMILY
    C:\DATA\iPHONE\FRIENDS
    C:\DATA\iPHONE\ABSTRACT
    C:\DATA\iPHONE\NEWYEARSPARTY
    But I cannot create
    C:\DATA\iPHONE\FAMILY\WIFE
    Then you just put pictures you want sycned into them. Sort of better to work with copies and have a folder specific for the iPhone I think. At some point you will want pics removed from your phone and far easier to just delete them from the iPhone specific folder than if you went to route of syncing to the folder you actually store photos you want to keep forever on your computer. Having a specific folder with copies means you can delete and add at will and know your real memories are elsewhere.

  • HT201320 How do I make new folders in mail?

    How do I make new folders in mail?

    If you are in desperation for folders you could set up an imap account such as Gmail or Hotmail, create whatever folders you want, add the account to your iPad, send the emails you want to categorise to your new email address and manage them from within. You could also consider gradually making the new email address your future one thus eliminating the need to be always forwarding and thus creating duplicates in a sense. Might be a bit clumsy but it is a work around!

  • How do you make new folders

    how do you make new folders

    Please browse the link below to know how to do it!!!
    http://www.inmotionhosting.com/support/email/thunderbird/creating-a-local-folder-in-thunderbird

  • How can I write new objects to the existing file with already written objec

    Hi,
    I've got a problem in my app.
    Namely, my app stores data as objects written to the files. Everything is OK, when I write some data (objects of a class defined by me) to the file (by using writeObject method from ObjectOutputStream) and then I'm reading it sequencially by the corresponding readObject method (from ObjectInputStream).
    Problems start when I add new objects to the already existing file (to the end of this file). Then, when I'm trying to read newly written data, I get an exception:
    java.io.StreamCorruptedException
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.readObject(Unknown Source)
    Is there any method to avoid corrupting the stream? Maybe it is a silly problem, but I really can't cope with it! How can I write new objects to the existing file with already written objects?
    If anyone of you know something about this issue, please help!
    Jai

    Here is a piece of sample codes. You can save the bytes read from the object by invoking save(byte[] b), and load the last inserted object by invoking load.
    * Created on 2004-12-23
    package com.cpic.msgbus.monitor.util.cachequeue;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.RandomAccessFile;
    * @author elgs This is a very high performance implemention of Cache.
    public class StackCache implements Cache
        protected long             seed    = 0;
        protected RandomAccessFile raf;
        protected int              count;
        protected String           cacheDeviceName;
        protected Adapter          adapter;
        protected long             pointer = 0;
        protected File             f;
        public StackCache(String name) throws IOException
            cacheDeviceName = name;
            f = new File(Const.cacheHome + name);
            raf = new RandomAccessFile(f, "rw");
            if (raf.length() == 0)
                raf.writeLong(0L);
         * Whne the cache file is getting large in size and may there be fragments,
         * we should do a shrink.
        public synchronized void shrink() throws IOException
            int BUF = 8192;
            long pointer = getPointer();
            long size = pointer + 4;
            File temp = new File(Const.cacheHome + getCacheDeviceName() + ".shrink");
            FileInputStream in = new FileInputStream(f);
            FileOutputStream out = new FileOutputStream(temp);
            byte[] buf = new byte[BUF];
            long runs = size / BUF;
            int mode = (int) size % BUF;
            for (long l = 0; l < runs; ++l)
                in.read(buf);
                out.write(buf);
            in.read(buf, 0, mode);
            out.write(buf, 0, mode);
            out.flush();
            out.close();
            in.close();
            raf.close();
            f.delete();
            temp.renameTo(f);
            raf = new RandomAccessFile(f, "rw");
        private synchronized long getPointer() throws IOException
            long l = raf.getFilePointer();
            raf.seek(0);
            long pointer = raf.readLong();
            raf.seek(l);
            return pointer < 8 ? 4 : pointer;
         * (non-Javadoc)
         * @see com.cpic.msgbus.monitor.util.cachequeue.Cache#load()
        public synchronized byte[] load() throws IOException
            pointer = getPointer();
            if (pointer < 8)
                return null;
            raf.seek(pointer);
            int length = raf.readInt();
            pointer = pointer - length - 4;
            raf.seek(0);
            raf.writeLong(pointer);
            byte[] b = new byte[length];
            raf.seek(pointer + 4);
            raf.read(b);
            --count;
            return b;
         * (non-Javadoc)
         * @see com.cpic.msgbus.monitor.util.cachequeue.Cache#save(byte[])
        public synchronized void save(byte[] b) throws IOException
            pointer = getPointer();
            int length = b.length;
            pointer += 4;
            raf.seek(pointer);
            raf.write(b);
            raf.writeInt(length);
            pointer = raf.getFilePointer() - 4;
            raf.seek(0);
            raf.writeLong(pointer);
            ++count;
         * (non-Javadoc)
         * @see com.cpic.msgbus.monitor.util.cachequeue.Cache#getCachedObjectsCount()
        public synchronized int getCachedObjectsCount()
            return count;
         * (non-Javadoc)
         * @see com.cpic.msgbus.monitor.util.cachequeue.Cache#getCacheDeviceName()
        public String getCacheDeviceName()
            return cacheDeviceName;
    }

  • How do I add new data to the same file in a State Machine?

    Hello,
    I have a State Machine, with a State where 3 samples of data are collected in a For Loop. I would like to save this data in a file and keep adding new data to the same file each time I get to this state. The problem I'm running into is that each time I reach this State, my old data in the Excel file gets replaced with the new data instead of being continuously added in the same file.
    Ive tried Shift Registers but I may not be using them correctly since my file keeps displaying only 3 new data points.
    Any ideas will be appreciated!
    Thank you, so much.
    -Peter

    Where should I place these shift registers? Where should I place my File I/O VIs? Is it possible to use the Write to Spreadsheet File VI in this situation?
    Ive attached a very simple example of the problem. Thank you.
    Attachments:
    StandardStateMachine 2.vi ‏16 KB

  • How do u make new folders in mail when I press edit only move delete or mark comes up nowhere can u make new folder

    I can't make new folder in mail on my normal acc or icloud

    If you are in desperation for folders you could set up an imap account such as Gmail or Hotmail, create whatever folders you want, add the account to your iPad, send the emails you want to categorise to your new email address and manage them from within. You could also consider gradually making the new email address your future one thus eliminating the need to be always forwarding and thus creating duplicates in a sense. Might be a bit clumsy but it is a work around!

  • How can i make new folders in i phone

    hi,
    pls tell me how to make a new folder on i phone.
    I am using i-4
    thanks
    Ajith

    If you mean folders for apps then press and hols one of your app icons until they all start to "wiggle" the drag them on top of each other to create the folder. The phone will name the folder but you can change this to whatever you like.

  • How do we create new folders?

    Hi folks,
    Just got a new Playbook and, contradicting all the bad press about it, it is actually very good. The question I have is: how do we create new folders? The only I can see are the "All", "Favorites", "Media" and "Games. Also, how do we sort by name the icons on the desktop? Thanks J. Rola

    Hi download Air browser from the App World. IT let's you make new folders, save documents and organize things efficiently. I just came across it last week by accident. Good luck.

  • How do I make New window open maximized the way it used to?

    How do I make New window open maximized the way it used to?

    { Ctrl + B } opens and closes the Bookmarks Sidebar.

  • HT2204 I changed my itunes email and password on my computer and now my phone says the password is wrong. How do I make my phone register the new changes?

    I changed my itunes email and password on my computer and now my phone says the password is wrong. How do I make my phone register the new changes?

    Try logging out of your account on the phone by tapping on your id in Settings > iTunes & App Store and then log back in with the updated id so as to 'refresh' the acccount on it

  • I want to sort all my bookmarks alphabetically but can't. You only let me drop a bookmark into an already-existing folder. And if that is the only way, how can I create new folders?

    Question
    I want to sort all my bookmarks alphabetically but can't. You only let me drop a bookmark into an already-existing folder. And if that is the only way, how can I create new folders so that I can try to create meaningful folders?

    With the iPod connected to the computer go to the Music pane for the iPod in iTunes and check the box that says sync only checked songs. The check the songs you want synced and click on Sync. For more info see:
    iTunes: Syncing media content to iOS devices and iPod

  • HT201303 I reset my iTunes Security Questions and when I go into the Apple Store to buy a TV Show it is still asking me the old security questions, not the new ones... How do I make iTunes ask me the new security questions?

    I reset my iTunes Security Questions and when I go into the Apple Store to buy a TV Show it is still asking me the old security questions, not the new ones... How do I make iTunes ask me the new security questions?

    Get prepared for some bad news, then contact iTS.
    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • How do I make new albums in photos and move picture from one album to another

    How do I make new albums in Photos and move photos from one album to another

    At the moment you can't - though it should be possible (if it makes it into the final release) in iOS 5 which will be available sometime in the Autumn. Photos cannot currently be moved between albums on the iPad.
    If  you sync separate folders from your computer you'll get an album for each of them on the iPad, and you have to sync all the folders/albums that you want together as only the most recent photo sync remains on the iPad (not including a folder in a sync is the way that you delete it from the iPad).

  • How do I make document folders in adobe reader app on iPad? Thanks

    How do I make document folders in adobe reader app on iPad? Thanks

    First show the Documents list, and in the upper left tap the Edit button. A toolbar in the upper left you'll see a folder icon with a + superimposed. Tap that and you'll be prompted to Create a Folder. Enter the folder name and tap the Save button and your new folder will appear in the Documents list.

Maybe you are looking for