Hi OzB Computer Crew,
Just thought I would put a question out there in case there is an easy solution.
The background is that I have many series, movies and music downloaded through various legal channels (like on Ozbargain when a deal is posted to mp3's etc)
I don't want to backup the actual files (others I certainly do) I just want to make a backup of the actual file names so it can prompt my memory and I would seek the files again should I have a HDD fail.
Now I do know of command line prompt scripts that I can run to list a drives contents, and I have used simple little programs in the past to list directory file names.
What I am after is an automated way of having this happen say once a week , or upon computer turn on that writes a file automatically to a drive that is synced/backed up (I recommend and use sugarsync for sync and backup)
Any ideas? Any help or hints would be greatly appreciated!
EDIT: PC - Windows 7 OS (Sorry)
My Solution:
Ok, with some ideas on here and some searching, I solved the problem for my purpose scheduling a full directory listing of two drives D & E.
Here is what I did;
Create a folder in my E:\ called 'FileListBackup' which is synced to sugarsync (backed up to cloud)
This is where the text file will always write to.Open Notepad and copy in this text;
dir /a /b /-p /o:gen /s > E:\FileListBackup\Latest_E_Drive.txt
start notepad E:\FileListBackup\Latest_E_Drive.txtSave this text as 'File List Maker E.bat' and place in the root directory of E:
Make a copy of this file to root directory of my D: and edit the new file slightly (only changed the two drive letters);
dir /a /b /-p /o:gen /s > E:\FileListBackup\Latest_D_Drive.txt
start notepad E:\FileListBackup\Latest_D_Drive.txtStart > Programs > Accessories > System Tools > Task Scheduler (easy to set up with batch files)
or
Copy shortcuts of your batch files into Start > Programs > Startup (This will run the program every startup)
A couple of notes;
This code will overwrite the file each time the computer starts or runs the task as a schedule - this may not be ideal if you don't use cloud backup.
Try this code on the third line to make a new file each time (credit to expertreader);
rename E:\FileListBackup\Latest_X_Drive.txt Archive_%date:~-4,4%%date:~-10,2%%date:~-7,2%_%hr%%time:~3,2%%time:~6,2%.txt
You may want to remove the 'start notepad' line. I put it in to remind me its still working each time.
Spaces and '-' other characters like this will not be allowed.
Thanks to all who contributed and gave me ideas!
me too. need backup of xbox 360 iso that i have downloaded