File Lists for BackUp

Soldato
Joined
21 Jul 2004
Posts
6,360
Location
Harrow, UK
Does anyone know of any good software that will automatically create a list of all files on my drives on a daily schedule so if one drive was to die, I know what files I have lost?
 
I ended up making a batch file with the following:

Code:
tree C:\ /f /a > "C:\Users\*****\Documents\File Lists\C.txt"
tree D:\ /f /a > "C:\Users\*****\Documents\File Lists\D.txt"
tree E:\ /f /a > "C:\Users\*****\Documents\File Lists\E.txt"
tree F:\ /f /a > "C:\Users\*****\Documents\File Lists\F.txt"
tree G:\ /f /a > "C:\Users\*****\Documents\File Lists\G.txt"
tree H:\ /f /a > "C:\Users\*****\Documents\File Lists\H.txt"
 
Back
Top Bottom