|
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.
|