Search found 2 matches
- 04 Jan 2012 00:31
- Forum: DOS Batch Forum
- Topic: create dir with text file in it
- Replies: 3
- Views: 5144
Re: create dir with text file in it
OK I got a working set of scripts. the first one makes the files and the second one creates a folder from the filename and moves the file into it. Im running into one problem, some of the movies contain an ":" which screws that filename up. I've tried putting a ^ in front of the colon in t...
- 03 Jan 2012 16:21
- Forum: DOS Batch Forum
- Topic: create dir with text file in it
- Replies: 3
- Views: 5144
create dir with text file in it
I have a text file exported from the movie collectorz program and I want to add my DVD collection to xbmc through stub files. I found this code and modified it to give me the files. for /f "tokens=*" %%l in (aaa.txt) do echo %%l > "%%l.dvd.disc" now I'm realizing I want to create...