counting files

E

Edson

Hi,,
anyone can help me to develop a script to count how many
files there are one a directory?
 
A

Austin M. Horst

DIR x:\foldername | FIND/I " FILE(S) "

Example:
DIR C:\ | FIND/I " FILE(S) "


Austin M. Horst
 
M

Matthias Tacke

Edson said:
Hi,,
anyone can help me to develop a script to count how many
files there are one a directory?

From the commad line
for /F "delims=[]" %A in ('dir /B/A-D^|find /N /V "" ') do @set files=%A

In a batch double the percent signs

HTH
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top