Directory listing
I know this isn't stricly Spectrum related,but I can't think of anyone better to entrust my technical problems with than the Spectrum brotherhood.
Does anyone know how to list the contents of a directory in windows as a text file? I want to list the contents of my emulation/rom directories so I can give them to a friend, but I've no idea how. Im sure this cant be hard, but I cant work it out. Any ideas?
Does anyone know how to list the contents of a directory in windows as a text file? I want to list the contents of my emulation/rom directories so I can give them to a friend, but I've no idea how. Im sure this cant be hard, but I cant work it out. Any ideas?
Post edited by Sharopolis on
Comments
http://www.csun.edu/itr/guides/winnt-folderlist.html
http://kb.indiana.edu/data/agcp.html
Best wishes,
Cristi
dir *.*>text.txt
This will create a file called text.txt and write all the output from dir *.* (make sure its in the games directory) to a file instead of the screen
Make that
dir *.* /S > text.txt
for subdirectory's as well.
dir *.* /s /o:n > list.txt
(or you'd better have the list.txt file created somewhere else, otherwise it'll show up in the file list :)
This is always the place to come for advice, Spectrum related or not.