I am learning from this article about how you can generate a txt file for a
directory. but when I use this one line code here, not working. can anyone
help? I have been trying this for few hours. :-(
thanks.
x “dir c:\chen >c:\chen\proglist.txt”
The generated .TXT file looks like the following:
Volume in drive C has no label
Volume Serial Number is 07CF-0B10
Directory of C:\chen
. 05-24-01 2:35p .
.. 05-24-01 2:35p ..
PROG1 SAS 0 05-24-01 2:35p prog1.sas
PROG2 SAS 0 05-24-01 2:35p pr
l***a 发帖数: 12410
2
try this
options noxsync noxwait noxmin;
x "dir /b /s c:\chen >c:\chen\proglist.txt";
a
【在 l***o 的大作中提到】 : I am learning from this article about how you can generate a txt file for a : directory. but when I use this one line code here, not working. can anyone : help? I have been trying this for few hours. :-( : thanks. : x “dir c:\chen >c:\chen\proglist.txt” : The generated .TXT file looks like the following: : Volume in drive C has no label : Volume Serial Number is 07CF-0B10 : Directory of C:\chen : . 05-24-01 2:35p .