PDA

View Full Version : how create file lst


jamel2013
12-02-2015, 06:14
how create file lst ? :confused: :(

pakrat2k2
12-02-2015, 07:31
open command prompt in the directory where you want listing.

dir /b /s >>"x:\output\listing.txt"

dir ( space) /b (space)/s (space)>>...

this give listing of folders+filenames. You will need to edit it of course.

kassane
12-02-2015, 08:13
E.g:
dir X:\gamefolder /b /s >>"x:\output\listing.ext"info: ext = extension (txt, lst, ini, others...)

Or download and use the FTS, which automatically generates the files listed in txt.
Freearc Tactical Splitter - filelist (http://fileforums.com/showpost.php?p=436056&postcount=1)
After generates them use the file "bat" to convert the list to 'lst'!

pakrat2k2
12-02-2015, 09:41
thanks for posting, I forgot all about that