Copy and Paste multi files

I know how to copy and paste a file but I want to select all files and copy it to a folder I don't want to select one at time help

Your best friend to do all this is to use file manager.. Open up file manager app, Just go into the device or SD card, select the folder or files, then it will give you the option to copy, move , zip share , rename etc..

Similar Messages

  • I'm not able to copy and paste files from my mac to hard disk and usb. I have tried dragging the items to those devices but it won't work. I also have tried copying and pasting those files onto those devices but that doesn't work too. Can any one help?

    I'm not able to copy and paste files from my mac to hard disk and usb. I have tried dragging the items I want to copy to those devices but it won't work. I also have tried copying and pasting those files onto those devices too but that doesn't work too. Can any one help?

    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)

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

  • Copy and paste a file please help.

    i want to copy and paste a file to a different directory.
    if i use the .renameTo() it cut and paste the file.
    what is the right method?
    killuasoft

    do you have an example?Yes, several in fact my good man.
    You may find them here http://java.sun.com/docs/books/tutorial/essential/io/index.html

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

  • Envy 17-j020us, cannot cut/copy and paste within file explorer

    I can cut/copy and paste url's and text from word, etc, but I am unable to cut/copy and paste files within file explorer windows. I have tried running malwarebytes and virus programs. HP support has tried remote access to find the problem unsuccessfully. Is there any other option besides doing a factory reset or restore point? Thanks in advance for any help.
    This question was solved.
    View Solution.

    Hi jdavis33811,
    Have you tried all three methods of cutting and pasting? Using the keyboard shortcuts CRTL-X and CTRL-V, right click the file and selecting cut and then using the file explorer ribbon / File menu.
    If you have tried all three the next thing to try is a Clean Boot to see if something is in the background blocking the command. A clean boot loads Windows with minimal software and drivers. This Microsoft Support link will show you how to do it.
    Once you have performed the clean boot try all three methods of cutting and pasting. If it works the next step is going back to msconfig (see Microsoft link above) and enable half of the services you shutoff to do the Clean Boot. Then try cutting and pasting again. Keep enabling half of the remaining services until you can't cut and paste then disable half of the services you just enabled. Do this until you pinpoint what service caused the issue.
    If after all that you are still having a problem then the next step would backing up your files onto an external hard drive or USB flash drive and then doing a full System Recovery.
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

  • 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

  • Copy and Paste Multi Layers

    I have a picture with several layers. I doubled the width of the canvas size to fit two up for printing.
    How do I copy all the layers to paste an exact duplicate with all the layers in tact without having to flatten the image?
    Thanks

    Thanks...That's a neat trick, but not quite what I need to do.
    I need to select each layer as a group then duplicate them to create the same picture side by side or drag and drop all the duplicated layers intact on the extended canvas. I cannot use the picture package because the size is not a usual format.
    In short, we have Employee badges that are printed through a 4 x 7 printer, to save paper we want to print the badges two up, but the layout template with its numerous layers is only one up.
    It would be really easy just to flatten the image, then duplicate the layer, but each badge has text layers that change with each employee's name, number etc., so all the layers have to be editable when there are two up.
    The issue is how can separate layers be copied and pasted or selected and dragged and dropped as a group in Photoshop and still retain the editable layers?

  • 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();
    }

  • Hey, newbie here. I'm trying to copy and paste a file which has text.

    I need to make a seperate sheet of labels of this file but it won't paste the text, only the background. What am I doing wrong?

    Are you sure the text is selected, might be a locked object or layer. Use the technique below as a test. Hide is a good friend in Illustrator, even after you become comfortable with the interface.
    Select >> all
    object >> hide >> selection
    object >> show all
    The other major reason this may be happening is you may have pasted the text, but that is somewhere off the screen. Zoom out and do a select all to see if you can find the text.

  • 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

  • HT4910 Is there a way to automatically backup iCloud documents, without having to manually copy and paste the files into a separate folder?

    I'm using MindNode Pro on OS X Mountain Lion, which saves documents to iCloud in a similar fashion to any of the iWork apps. I previously synced with Dropbox, which was automatically backed up with TimeMachine. Is there a way to do the same with iCloud?
    Thanks

    iCloud documents are backed up in Time Machine.

  • I able to copy and paste files from external hard drive to mac, but not the other way around. Please suggest. Thanks

    I m able to copy and paste selected files from external hard drive to my mac but not the other way around. Im not able to copy files from Mac to external hard drive.
    The same is working fine with USB flash memory.
    Please help.

    Vijay Raymond Daniel wrote:
    The only thing is we need to buy this software. if there is a free solution to inter change files between NTFS and HFS it would be better,
    Don't use NTFS, remove your data off it first and change the format to something the Mac and PC can read, but doens't cost money or require software.
    Drives, partitions, formatting w/Mac's + PC's

  • Can't Copy and Paste in Finder

    Hello,
    I have the latest Mountain Lion release on a 2009 iMac.
    I have recently encountered a problem that keeps bugging me. It's impossible for me to copy and paste a file in Finder. alt+Dragging will work, but CMD+C followed by CMD+V or going through the menus will not work.
    Pressing CMD+C or going through the EDIT menu and selecting Copy seems to work, but Pasting isn't possible.
    Does anyone have any idea as to how I can solve this?
    Thank you,

    antrozous wrote:
    Barney,
    Thanks for the help.
    I have neither of these apps installed.
    After trying in safe mode, it appears that these commands do work! So if I understand well I must look through all the apps that launch when I login so I can pinpoint which one is causing the trouble?
    That's pretty much it. Do you know of any other program you've installed that would modify the Finder?

  • When I copy and paste an image from Word for usage in a Framemaker document it becomes blurred.

    Hi,
    I am saving graphics from Word for usage in a Framemaker document. When I copy and paste the file into photoshop it becomes blurred and unusable. How do I resolve this? I have tried saving the file in it's highest resolution but that doesn't work either.
    Thanks,
    Niall.

    The problem has to be the image itself, but then you give us zero information.
    We don't even know what platform you are on, Macintosh or Windows, what exact version of the OS, of Photoshop, or Word you are using, how you are getting what kind of image from Word, etc.
    It could be that you're just copying the low resolution thumbnail preview from MS Word, but we know nothing about its dimensions, resolution or format.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

Maybe you are looking for

  • Gong nuts trying to replace a hard drive on an early 2008 IMAC

    Hi All, I'll try to be brief.  I thought we were having hard drive issues, because if we tried to reboot once warm we just get the folder with the flashing ?  SOmetimes the computer would go days before it was kind enough to reboot. I managed to keep

  • How can I change the width of bookmark toolbar buttons?

    I would simply like to alter the width of bookmark toolbar buttons to better display the bookmark title. I also have MultirowBookmarksToolbar addon installed.

  • 802.1x dynamic VLAN assignment with Radius NPS Server

    I can NOT get the NPS and Cisco 3550 switch to drop the authenticated user in a VLAN. I have followed this documentation, http://msdn.microsoft.com/en-us/library/dd314181(v=ws.10).aspx that basically says to use these Radius attributes, Tunnel-Medium

  • Strange Dialog boxes popping up

    During the past several weeks I have been getting strange dialog boxes popping up on my desktop and all my efforts, including stripping out my hard drive and reinstalling a brand new version of Mac OS10.5.0 then upgrading to 10.5.6 via the combo down

  • Cache engine with ASA

    Hi Can I use the Content Engine as a Reverse proxy server and deploy the servers and the CE in the DMZ. If yes then can I have the ASA do the WCCP or the router? Thank you Regards Aiyappa