Finding Files on a server

N

Neil

Does anyone have a link to a website, or a code snippet
that will listy all the files on a file server along with
the date & time stamp & file size and the path, so I can
go about searching for duplicates, then bolting an email
code on the end to send users a notification of the
duplicte files they have in thier user directories that
are available else where on the file server ?
 
T

Tom Ogilvy

dir R:\*.* /S > mylisting.txt

will do a listing of all files on the R drive and redirect the input to a
file named mylisting.text

go to the commandprompt and do

help dir

to see what options you have.
 
Top