View Single Post
  #3  
Old 07-04-2001, 23:29
linux box linux box is offline
Senior Member
 
Join Date: Mar 2001
Posts: 163
Thanks: 0
Thanked 0 Times in 0 Posts
linux box
ok, i found out the problem. if i stay in the same dir that the adx file are in (if my adx files ar in c:\adx and my dos prompt is in the same dir.) then instead of doing:
dir /b /o /s *.adx > adx.txt

you should do

dir /b *.adx > adx.txt

this will prevent the command from puttting the path in front of the filename.
Reply With Quote