MS-DOS find command
- by mihai
Hi, I have the following command:
find Acc*\bin\Debug\*.pdb > temp.txt
Looking in temp.txt, I have:
Accounting/bin/Debug/Accounting.pdb
Accounting/bin/Debug/BackendProcess.pdb
NOTE the forward slashes. Why does it output file names like this? And how do I get it to output backslashes, so I can use del on those files?
Thanks