Finding Files on a server

  • Thread starter Thread starter Neil
  • Start date Start date
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 ?
 
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.
 

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

Back
Top