HowTo: Capture File/Folder Details

S

Steve

Hi there...

I hope this isn't a stupid question but I have a need to "capture" a
directory tree into Word, Excel or Access. I don't mind doing "whatever"
folder-by-folder. I need full path-name, complete file name, date/time, and
file size.

I'm looking to document an App we've made. It's in 3 main folders, 1 folder
has maybe 250-300 sub-folders totally maybe 2500 files... some sub-folders
are 8-10 deep. I'd like to electronically capture the "current position"
and then the "next position" and be able to compare the two to determine
what's been changed.

Thanks in advance,
Steve
 
A

Ayush

http://folder-tree.qarchive.org/

--
Ayush [ Be ''?'' Happy ]

For any query, search - www.Google.com
Want to know about a term - http://en.wikipedia.org

Replied To :
-------------------------------------------------------------

| Hi there...
|
| I hope this isn't a stupid question but I have a need to "capture" a
| directory tree into Word, Excel or Access. I don't mind doing
"whatever"
| folder-by-folder. I need full path-name, complete file name,
date/time, and
| file size.
|
| I'm looking to document an App we've made. It's in 3 main folders, 1
folder
| has maybe 250-300 sub-folders totally maybe 2500 files... some
sub-folders
| are 8-10 deep. I'd like to electronically capture the "current
position"
| and then the "next position" and be able to compare the two to
determine
| what's been changed.
|
| Thanks in advance,
| Steve
|
|
|
 
P

Pegasus \(MVP\)

Steve said:
Hi there...

I hope this isn't a stupid question but I have a need to "capture" a
directory tree into Word, Excel or Access. I don't mind doing "whatever"
folder-by-folder. I need full path-name, complete file name, date/time, and
file size.

I'm looking to document an App we've made. It's in 3 main folders, 1 folder
has maybe 250-300 sub-folders totally maybe 2500 files... some sub-folders
are 8-10 deep. I'd like to electronically capture the "current position"
and then the "next position" and be able to compare the two to determine
what's been changed.

Thanks in advance,
Steve

You can do this from a Command Prompt:
- Click Start / Run / cmd {OK}
- Type these commands on Friday:
cd /d "d:\Your Folder"{Enter}
dir /s /od > c:\Fri.txt{Enter}
notepad c:\Fri.txt {Enter}
- Type these commands on Saturday
cd /d "d:\Your Folder"{Enter}
dir /s /od > c:\Sat.txt{Enter}
notepad c:\Sat.txt {Enter}
fc c:\Fri.txt c:\Sat.txt > c:\Diff.txt{Enter}
notepad c:\Diff.txt{Enter}
 

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

Top