View Single Post
Old 04-03-2005, 07:10 AM   #2 (permalink)
TheProf
Crazy
 
hmm...

you could sort of do this by listing the number of files with certain extensions.

1) get to your command prompt
2) type 'cd\' then enter
3) type 'dir /s *.XYZ' where XYZ is the filetype you are interested in .txt, .doc, etc) then press enter

The /s will tell the computer to search through all subdirectories.

You just have to do it for each type of file you are interested in numbering.

Just a possiblity to help
TheProf is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62