in another posting I got this code ("DOS" - CMD)
Code: Select all
dir "c:\Tasks\*.tmp" /b /s |find /v /c "::" > c:\temp\tmpcount.txt
Code: Select all
10
Code: Select all
dir "c:\Tasks\*.txt" /b /s |find /v /c "::" >> c:\temp\tmpcount.txt
Code: Select all
10
12
How to write both results in one(1) line?
Code: Select all
10 / 12
Peter