Dempsey
Scripting Contest Winner
http://AdamDempsey.net
Posts: 2395 Reputation: 53
38 / /
Joined: Jul 2003
|
RE: [URGENT]Copy file from my documents to A: In command prompt
quote: Originally posted by M73A
Copy file from my documents to A: In command prompt
code: cd "c:\documents and settings\<username>\my documents"
cp filename.ext a:\filename.ext
quote: Originally posted by M73A
is there a way i can view files in the my documents folder? so i can check the filename? thanks
code: cd "c:\documents and settings\<username>\my documents"
dir *.ext /p
quote: Originally posted by M73A
what would i have to type in for AAA.doc from my documents to the A drive?
code: copy "c:\documents and settings\<username>\my documents\AAA.doc" a:\AAA.doc
EDIT: yea i'm slow
This post was edited on 10-08-2006 at 09:23 PM by Dempsey.
|
|