View Single Post
  #8  
Old 20-11-2008, 08:13
ravd ravd is offline
Senior Member
 
Join Date: Nov 2007
Location: ???
Posts: 188
Thanks: 0
Thanked 9 Times in 9 Posts
ravd is on a distinguished road
when making dummy files with notepad or renaming txt file then make sure you don't leave .txt extension

Easy to do if you have unticked "Hide extensions for known file types" in windows settings. (Control Panel -> Folder Optrions -> View Tab -> Advanced Settings) Any advanced windows user should have this unticked.

Of course batch file won't pack renamed txt files if there is .txt extension

filename.txt <- Wrong way

filename <- right way

Here is how i usually do my dummy files using batch file

Code:
ECHO. >dummy
Code:
REM DUMMY FILES FOR MULTI10

ECHO. >SOUNDSPEECHCopspeechdat_en_big
ECHO. >SOUNDSPEECHCopspeechdat_ru_big
ECHO. >SOUNDSPEECHCopspeechdat_sp_big

REM DUMMY FILES FOR MULTI3

ECHO. >SOUNDSPEECHCopspeechdat_fr_big
ECHO. >SOUNDSPEECHCopspeechdat_ge_big
ECHO. >SOUNDSPEECHCopspeechdat_it_big
Reply With Quote