easy dos question
Results 1 to 6 of 6

Thread: easy dos question

  1. #1
    Registered User
    Join Date
    Mar 1999
    Location
    UK
    Posts
    61

    Post easy dos question

    can somebody please tell me, so i can tell someone else, the dos command that will find from c:\ and all other directories, *.doc files and then copy them to floppy?

    they have a 3.11 pc that's on it's last legs and is only booting to dos. we can't be bovered to fix it, we just want to get all the word docs.
    Can I have an 'Undo' button installed on my Unix box please?

  2. #2
    Xavier
    Guest

    Post

    You could try xcopy....
    I thing doing:
    xcopy c:\*.doc n:\doc /s
    might work in dos, it works in win98..
    Good luck

  3. #3
    Registered User
    Join Date
    Mar 1999
    Location
    USA
    Posts
    218

    Thumbs up

    If you just wont to view the doc files you can use the (dir) command. C:\dir *.doc
    If you use the xcopy command add the /v and /s switches. C:\xcopy /v/s *.doc a:\

  4. #4
    Registered User
    Join Date
    Feb 2000
    Location
    Melbourne, Australia
    Posts
    200

    Post

    XCOPY C:\*.DOC A: /s should do the trick.

    If you just want a listing of the files, you'll need to use DIR C:\*.DOC /s for files in all sub-directories.

  5. #5
    Registered User
    Join Date
    Mar 1999
    Location
    UK
    Posts
    61

    Smile

    excellent, thanks for that
    Can I have an 'Undo' button installed on my Unix box please?

  6. #6
    Registered User
    Join Date
    Mar 2000
    Location
    Bonneau, SC USA
    Posts
    30

    Post

    The Xcopy command will work but do yourself a favor and use the Dir/s first to make sure that the files will fit on a floppy. If they won't then you should probably use the dos version of PKZIP with the span disk option.

Bookmarks

Posting Permissions

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