|
-
Sep 9th, 2001, 03:02 PM
#1
Thread Starter
transcendental analytic
Copy dirs in dos
I need the equivalent to Copy as Deltree is to Del, that is i want to copy all subfolders as well
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Sep 9th, 2001, 03:13 PM
#2
Frenzied Member
dont use copy. Use Xcopy with the /s parameter. It works 4 me on Win2K anyways...
You just proved that sig advertisements work.
-
Sep 9th, 2001, 03:13 PM
#3
try xcopy, think
Laugh, and the world laughs with you. Cry, and you just water down your vodka.
Take credit, not responsibility
-
Sep 9th, 2001, 03:14 PM
#4
Frenzied Member
hehe same time post
You just proved that sig advertisements work.
-
Sep 9th, 2001, 03:17 PM
#5
Thread Starter
transcendental analytic
okay, i used xcopy but forgot the /s thing, thankies guys
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Sep 9th, 2001, 03:27 PM
#6
Frenzied Member
no prob
You just proved that sig advertisements work.
-
Sep 9th, 2001, 03:43 PM
#7
Thread Starter
transcendental analytic
XCopy ****ed all my long filenames, any ideas what next? I'v tried ace but it starts sorting and sorting and it takes ages...
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Sep 9th, 2001, 05:33 PM
#8
xcopy didn't do that. that is the 8.5 dos file type.
that is a dos default.
-
Sep 9th, 2001, 05:33 PM
#9
Monday Morning Lunatic
8.3 
Ked, why not just write a program yourself?
I refuse to tie my hands behind my back and hear somebody say "Bend Over, Boy, Because You Have It Coming To You".
-- Linus Torvalds
-
Sep 9th, 2001, 05:55 PM
#10
Thread Starter
transcendental analytic
Originally posted by parksie
8.3 
Ked, why not just write a program yourself?
hum 8.3?
No i want to copy windows dir, and it says "SHARING VIOLATION" BTW I'm really really really really really really really in a bad mood today so i'm not going to do anything
Actually i'm going to ace the **** and go to sleep
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Sep 9th, 2001, 05:56 PM
#11
-= B u g S l a y e r =-
try xcopy32 ... should take care of the long filenames
-
Sep 9th, 2001, 06:02 PM
#12
Thread Starter
transcendental analytic
alright i give that one a try
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Sep 9th, 2001, 06:09 PM
#13
Monday Morning Lunatic
I don't think you can copy the Windows folder while it's running. You'd need to copy it while it wasn't running.
I refuse to tie my hands behind my back and hear somebody say "Bend Over, Boy, Because You Have It Coming To You".
-- Linus Torvalds
-
Sep 9th, 2001, 06:19 PM
#14
Thread Starter
transcendental analytic
my xp beta version was killed accidentally :maD: so i had to kill anyone in this room as well well i don't have any other os than dos to do this in so dos or dos? which one?
XCOPY 32 DIDNT FUXORING WORXOR :MAD:
1. It didn't copy with long filenames 
2. 2/3 of the files was not copied 

FUx00R!
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Sep 9th, 2001, 06:49 PM
#15
-
Sep 9th, 2001, 07:03 PM
#16
Thread Starter
transcendental analytic
Xcopy32 c:\windows h:\win98\windows\ /s
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Sep 9th, 2001, 07:23 PM
#17
if you want all files then take off /s as that is for system files.
-
Sep 9th, 2001, 08:51 PM
#18
Frenzied Member
Originally posted by scoutt
if you want all files then take off /s as that is for system files.
Thats not true...just do Xcopy /? to see all the params. /s copies all subfiles and folders. Of course i have Win 2K...
You just proved that sig advertisements work.
-
Sep 9th, 2001, 09:19 PM
#19
Originally posted by nishantp
Thats not true...just do Xcopy /? to see all the params. /s copies all subfiles and folders. Of course i have Win 2K...
my bad, I was thinking of something else.
-
Sep 9th, 2001, 09:51 PM
#20
Frenzied Member
Originally posted by scoutt
my bad, I was thinking of something else.
Lol the format command adds system files with /s
You just proved that sig advertisements work.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|