RE: fast way to make a list of files on a dvd/cd
Better yet... this command:
dir c:\music /s > c:\files.txt
where 'dir' is the command, 'c:\music' the drive\directory, '/s' option to show also the subdirectories, '>' option to send the results to a file, 'c:\files.txt' the file to be created for the results.
|