How do i copy and paste photo files

I have only recently become an iMac user and can't find a way to copy and paste photos which in turn is giving me lots more folders than I want.
Is there a 'dummies' way of learning?
Thanks

I have worked it out!  WooHoo!!
I was trying to copy and paste 4 photos at a time from one folder to another but instead of going from folder to folder, I was actually going from folder to individual photos column.  Probably doesn't make sense to you, but it's all good now.
thank you for your help

Similar Messages

  • How can I copy and paste images' file?

    I need to duplicate images' files (.jpeg or .gif) from a directory to another one.
    How can I do?
    Is there any method to do that?(with jdk1.3.1)
    Thanks for your help.

    The following class copies files. Just call "java FileCopier file1 file2". FileInputStream and FileOutputStream also accept File instances instead of Strings, which will help when you work with different directories.
    // file: FileCopier.java
    import java.io.*;
    public class FileCopier {
      private String fileIn, fileOut;
      private int buffersize = 32768;
      public FileCopier(String fileIn, String fileOut) {
        this.fileIn = fileIn;
        this.fileOut = fileOut;
      public void copy() throws IOException {
        FileInputStream reader = new FileInputStream(fileIn);
        FileOutputStream writer = new FileOutputStream(fileOut);
        byte[] buffer = new byte[buffersize];
        int read;
        while( (read = reader.read(buffer, 0, buffersize)) > 0 ) {
          writer.write(buffer, 0, read);
        writer.flush();
      public static void main(String args[]) throws IOException {
        FileCopier copier = new FileCopier(args[0], args[1]);
        copier.copy();
    }

  • How can i copy and past music files, Images and Videos to my Apple Iphone?

    I have a new Iphone 4 mobile phone. Any one can  help me  for how can i stote music,videos and images files in My Iphone?
    When i search on internet i saw icloud and itunes. Is there any net connection requered to use icloud or itunes? Without net connect how can i store my files in my apple phone?

    Prabakhar,
    First, please verify that you mean CDDA and not CDA.  CDA is not an audio format.
    CDDA is pretty much the "raw" format of an audio CD.  It is extremely unusual to have it as a separate file.  If you still have the original CD that it came from, re-rip the CD using this document.  (Edit added.  I meant to add the link to this document:  http://support.apple.com/kb/PH12486  )
    Otherwise, a web search will turn up converters that can process a CDDA file, although I have not used them.
    Message was edited by: ed2345

  • Copy and paste a file path?

    How do i copy and paste a file path?
    Thanks

    I assume there's probably a utility in macupdate.com that could probably do that.  A quick search on macupdate for "copy path" found a bunch.
    Alternatively you could create an automater service (finder contextual menu) to do it.
    Or just drag the finder item into the terminal window.  The path will appear and you can copy/paste that.

  • How do I copy and paste from one page or file to another page or file - on the same screen?

    How do I copy and paste from one page or file to another - on the same screen?

      Open both of your images in the Editor. Click on the image you want to copy and press Ctrtl+A (select all) followed by Ctrl+C (copy) then click the tab for your other image and press Ctrl+V (paste)
    Alternatively click on your background image then simply drag the second image from the photo/project bin and drop it into the main editor workspace on top of the background image. Use the move tool to position and the corner handles of the bounding box to scale.

  • How to copy and paste photos to word doc?

    how to copy and paste photos from finder to word doc? It just shows the url...

    Hi John,
    You can do as the followings:
    Create a blank form with InfoPath Designer 2010,
    Add a Rich Text Box control and Submit button in the blank form
    Publish the form to your SharePoint site
    Open the form library and create a document
    Copy the table with text from word file
    Paste the table in the Rich Text Box area, the paste option is Keep Source Formatting
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • How can I copy and paste a pdf file from my picture file and paste onto a document?

    How can i copy and paste a pdf file onto a document.  I am trying to place and article onto my
    Reverbnation Press page.  They only give you the option to either place a url link or paste a document.  There
    is no uploading for the Press page.  thanks, elena

    The Digital Editions forum is here, in case this is what you are talking about:
    http://forums.adobe.com/community/adobe_digital_editions
    If you are not, I apologize for the misunderstanding.

  • How do I copy and paste an address list from an Excel file to an email on my iPad2?

    I am using Dropbox to maintain email and text lists. How do I copy and paste these lists into the email "to" box on my iPad2 and iPhone?

    I do not fully understand your question. However, you can use the GoodReader app to download and excel file from DP and open it is GoodReader. Then copy the address abd paste it in the email.

  • How do I copy and paste files from a windows remote server to my mac?

    How can i copy and paste files from a remote server (windows) to my mac? i have installed cord to connect to the server but now i can´t cpy the files to my mac!

    Hi Sara.  Tanks for responding.  If I cannot figure this out (I  was up
    until 2am last night), I want to cancel my subscription.
    Here are two files you can check on/help me with.  When I try again,  it
    comes up 'an error has occurred when trying to access the service.'
    Please advise.
    Pat Tomassi
    In a message dated 11/1/2014 12:55:23 A.M. Eastern Daylight Time, 
    [email protected] writes:
    How  do I copy and paste text from a converted Word document?
    created by Sara.Forsberg (https://forums.adobe.com/people/Sara.Forsberg) 
    in Adobe Acrobat.com Services - View the full  discussion
    (https://forums.adobe.com/message/6888908#6888908)

  • HT2506 hi i can't seem to copy and paste pdf files from preview to a microsoft word document. it always comes up with nonsense characters in the word document. how do i fix this? thanks in advance

    hi i can't seem to copy and paste pdf files from preview to a microsoft word document. it always comes up with nonsense characters in the word document. how do i fix this? thanks in advance

    Hi,
    The quickest way to do this (tested with OS 10.8.2, MS Word 2011) is in one line:
    tell application "Microsoft Word" to close every document whose name begins with "book"
    The reason why your script doesn't work is that you aren't specifying to Word which document you want it to close.
    So, changing one line ought to do it:
    close document incrementvalue -- instead of "close document"
    But... when you close a document, you change the document count. Document 2 becomes document 1, document 3 becomes document 2 etc. So eventually you'd get a message saying "The object you are trying to access doesn't exist".
    Because of this, if you want to do it in a repeat loop, you have to work backwards:
    tell application "Microsoft Word"
      set doc_count to count documents
      repeat with x from doc_count to 1 by -1
      if name of document x begins with "book" then close document x
      end repeat
    end tell
    Hope this helps.

  • How do i copy and paste signature to pdf file

    how do i copy and paste my signature to a pdf. file

    You don't.  You include your signature in the file that PDF was created from.

  • How can I copy and paste my edited Photo in photoshop elements 12?

    How can I copy and paste my edited photo from photoshop elements 12 into a word document?

    In full Editor:
    Go to Select menu>all
    Go to Edit menu>copy to put it on the clipboard
    Go to your destination document>Paste
    Hope that this works for you as well.

  • I would like to copy and paste photos from iphoto to a cd for use

    I would like to copy and paste photos from iphoto to a cd for use.  How can I do this so it can be used for further work in other computers without iphoto?
    Steve

    You can't do that.
    Export the Photos (File -> Export) to a folder on the desktop. Then burn that to the CD using the Finder's Burn Disk command.
    Regards
    TD

  • Why I am not able to copy and paste photos from my desktop to my Itouch?

    I am not able to copy and paste photos from my computer to my Itouch. I use to be able to do it. Now there is an error message that says my device is wither disconnected or stopped responding.
    But when I plugged in the Itouch, it still shows on my computer, still able to see my existing pictures in it. Just not able to paste/drag any new pictures into the folder.
    Anyone has this problem and able to solve it?
    Thank you.

    Hi BobRz
    Thanks for you suggestion but it didn't work - are there other ways for solving this problem? Or is it because my files that I want to copy and paste onto my hard disk etc are too big? (However there is space on my hard disk and it works on a PC)

  • How can I copy and paste a caption for several pictures that are all the same?

    I'm trying to understand the process of importing, labeling and organizing pictures I'm importing from my iPhone into iPhoto 11.
    So far I am importing only pictures that relate to one another; ie taken at the same event.  I have 18 pictures from one hike.  I'd like to label each of those pictures the same; ie "hike at Bear Creak 2/15."  Can I copy and paste the same label to all 18 pictures?  How would I copy and paste?
    There are lots of You Tube videos on the subject of iPhoto and that's how I learn best.  If you know of a really basic one to watch I'd appreciate it. 
    I think I have to take a class at the Apple Store on this basic organizing because it's really escaped me in the 9 months I've had this Mac (switched from PC.)
    Thanks,
    Ginny

      I have 18 pictures from one hike.  I'd like to label each of those pictures the same; ie "hike at Bear Creak 2/15."  Can I copy and paste the same label to all 18 pictures?  How would I copy and paste?
    Ginny,
    select all 18 photos at once in iPhoto on your Mac and then use the menu entry "Photos > Batch Change"
    That will change the titles or descriptions of all photos at once.
    -- Léonie

Maybe you are looking for

  • How do I allow access to non admin network users to disk volume?

    I would like to allow access to a specific volume (disk) on one of our networked macs (Mac1) to all users. I've set user accounts on Mac 1 for all network users. These users are "regular" users, not admin. They can access this disk (and all others on

  • Problem in printing multiple main window in smartforms

    Hi Experts, I have requirement form client to print PO which consists of 4 page. First page is cosists of header and some text. In second page different header and line item. Thirs page different header and line item. 4th page different header and li

  • I can't update itunes due to an invalid signature?

    The download starts but half way through the process a prompt appears saying the download can not be completed due to itunes having an invalid signature, what can i do to rectify this problem? Will i lose sync'ed data associated with my iphone if i u

  • Regular Expressions - Problem

    Hi @ all, I need a complicate regular expression, I don´t know. I have a big folder with many .htm pages (800-1000) and I have to do the following: http://www.domain.de/ab%32-xyz?myshop=123 I have to delete the "ab%32-xyz", the problem is, that in th

  • Bug: No Cursor Focus with Instant Preview Message Replies

    When you receive an Instant Preview Message and click on this notification (not shortcut reply but click on the notification itself for bbm or text messages) this brings you into the Hub to reply to that message.  The cursor focus is now in the reply