Can someone give me a simple guide on how to use the cmd command prompt to join files. I don't know how to this at all, so please when you are explaining, don't assume that I know what you mean. In other words, Don't try to impress me with big words and complicated terms. Speak English!!
+ Reply to Thread
Results 1 to 3 of 3
-
-
Try filename + filename joinedfilename
(using only spaces or + in between filenames)
This method worked in DOS and pretty sure it still does in all Microsoft including XP. Use complete filenames with extensions to be sure, and in same directory. -
Just to clarify a bit more:
Example 1:
Say you want to join text files named 'filename1.txt' & 'filename2.txt' and create 'filename3.txt',
you can use ..
Code:copy "filename1.txt" + "filename2.txt" filename3.txt
Say you want to join many text files 'fn1.txt', 'fn2.txt', 'fn3.txt', 'fn4.txt.' etc and create 'new.txt',
you can use..
Code:copy "fn*.*" new.txt.
You want to join non-text files, (called binary files),
you need to use the '/b' option in your copy.
e.g.
Code:copy /b "movie.mpg.001" + "movie.mpg.002" + "movie.mpg.003" wholemovie.mpg
Code:copy /b "movie.mpg.*" wholemovie.mpg
Similar Threads
-
how to run as admin in CMD in Windows XP?
By jyeh74 in forum Newbie / General discussionsReplies: 7Last Post: 29th Jan 2010, 18:26 -
How to access Group Policy via Command Prompt.
By blinky88 in forum ComputerReplies: 9Last Post: 8th Sep 2009, 08:47 -
wildcards in cmd
By cL0N31 in forum ComputerReplies: 6Last Post: 3rd Apr 2009, 20:58 -
How to use windows 2000 console (command prompt) to fix missing ntloader
By edong in forum ComputerReplies: 2Last Post: 5th Oct 2008, 22:08 -
Is there easy way to create Win2k boot disk with command prompt available?
By bevills1 in forum ComputerReplies: 9Last Post: 10th Apr 2008, 11:25