Page 1 of 2 12 LastLast
Results 1 to 10 of 14

Thread: DOS command

  1. #1
    Junior Member
    Join Date
    Oct 2002
    Posts
    8

    DOS command

    i have three partitions in my hard disc C: and D: and E: and i want to copy all the folders and files in D: to E: under DOS.and i don't know the DOS command to do that.someone help me please
    thank you verymuch.
    toured

  2. #2
    Senior Member
    Join Date
    Nov 2002
    Posts
    482
    the best way would be to get a program called partition magic and make bootable diskettes that will be the best way to do it through dos. cause, then you can resize your partitions after you have moved the files. if you want to move all files from d and e onto c and leave d and e empty. use partition magic cause then you can delete the unused partitions and make c partition bigger
    - Trying is the first step towards failure. the moral is never try.
    - It\'s like something out of that twilighty show about that zone.
    ----Homer J Simpson----

  3. #3
    Senior Member
    Join Date
    Nov 2002
    Posts
    393
    I can't say how to copy entire directories, but the files will be
    D:>copy *.* e:

    that should copy all the files from d: to e:

    -inv
    \"I have a 386 Pentium.\"

  4. #4
    Shadow Programmer mmelby's Avatar
    Join Date
    Jul 2002
    Location
    Ft. Myers, FL
    Posts
    291
    It depends on what version of DOS/Windows you have If you have xcopy available that would be the way to go. Type xcopy /? to get the parameters for the command. If you don't have xcopy you can use copy. Type copy /? to get those parameters also.
    Work... Some days it's just not worth chewing through the restraints...

  5. #5
    Senior Member
    Join Date
    Nov 2002
    Posts
    482
    or even if you just want to copy files. a program called QD3 which is like doshell but it is more user friendly and better orientated
    - Trying is the first step towards failure. the moral is never try.
    - It\'s like something out of that twilighty show about that zone.
    ----Homer J Simpson----

  6. #6
    Senior Member
    Join Date
    Nov 2002
    Posts
    606
    Hi,

    If you want to take your folders from one drive to another using a DOS command you can use the MOVE command.
    For example if you want to move a folder called DRIVERS in drive d:\ to a folder called PROGRAMS in drive e:\ you must type this:

    move d:\drivers e:\programs (it will move the entire folder with all of the files and folders inside it).

    If you just want to move it to drive e:\ then just type:

    move d:\drivers e:\

    That's all, bye.

    DKRR

  7. #7
    AO Curmudgeon rcgreen's Avatar
    Join Date
    Nov 2001
    Posts
    2,716
    I came in to the world with nothing. I still have most of it.

  8. #8
    Junior Member
    Join Date
    Oct 2002
    Posts
    20
    you can use norton commander for dos. this is very nice programm and it is easy to work with it.
    If you want to lead the people you must follow them.

    www.homomultimedia.com

  9. #9
    AO übergeek phishphreek's Avatar
    Join Date
    Jan 2002
    Posts
    4,325
    If I were you, I'd use RCGREEN's suggestion, and he even provided a good link for it.

    If you don't want to use the souce RCGREEN provided, a simple

    c:\xcopy /?
    will show you how to use it.

    The command list/options is a little long, so you may want to output it to a file.

    example

    c:\xcopy /? |more
    (to display to screen with screen breaks)

    c:\xcopy /? >c:\xcopy.txt
    (to ouput the options to a file calles xcopy.txt in the root of c: )

    xcopy /e d:\*.* e:\
    (will copy all files/folders on d: to e: )

    Partition magic is great for adding/deleting/modifying partitions, not for copying files.
    Quitmzilla is a firefox extension that gives you stats on how long you have quit smoking, how much money you\'ve saved, how much you haven\'t smoked and recent milestones. Very helpful for people who quit smoking and used to smoke at their computers... Helps out with the urges.

  10. #10
    Antionline's Security Dude instronics's Avatar
    Join Date
    Dec 2002
    Posts
    901
    Like mentioned above, xcopy is a nice solution. Try :

    xcopy c: d:

    oops, i meant in your case xcopy d: e:

    not c: d:

    Sowwy
    Ubuntu-: Means in African : "Im too dumb to use Slackware"

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •