Ok all you batch file gurus out there...I need some help.
I had a list of words in Excel that I need to create a folder for each word. So I made a quick batch file that just said "mkdir one", "mkdir two", etc, and I got a folder for each word.
Now I also have a list of words in Excel that I need to create a file for each one, a text file is ok. I can't figure out how to do it though. Is there a command to create a new file in DOS that I'm missing?
Thanks!
+ Reply to Thread
Results 1 to 4 of 4
-
-
Here is a hint:
let's assume the words in your Excel sheet are "one", "two", "three" etc.
In DOS, create a text file, say "zero.txt"
Create a command file with following DOS commands:
copy zero.txt one.txt
copy zero.txt two.txt
copy zero.txt three.txt
etc
A piece of cake... -
Ok, I think I got it if after some help if anyone is interested...
echo 2> test.html
This will create a new file called test.html without anything in it
Similar Threads
-
Batch create simple ("DirectShowSource") .AVS files?
By Asterra in forum Newbie / General discussionsReplies: 8Last Post: 10th May 2011, 00:46 -
How can I create IFO + BUP files for a VOB file?
By mac&me in forum MacReplies: 3Last Post: 4th Dec 2010, 02:06 -
Can I create an .IFO file from .VOB files?
By Madcap in forum DVD RippingReplies: 7Last Post: 15th Aug 2010, 14:57 -
Help me create an .iso file from .vob dvd files!!
By SlyOne in forum DVD RippingReplies: 2Last Post: 15th Aug 2010, 09:25 -
How to create .mp4 file by using raw .h264 and .aac files for JW Player
By hakkinen in forum Newbie / General discussionsReplies: 2Last Post: 10th Mar 2009, 20:49