M
Michael Salem
Does anybody know of a program, or a procedure, in a 32-bit Windows
system which will let me display all the files in a directory and its
subdirectories listed by date?
The purpose: quickly check the date of the last meaningful change to any
file in the tree: if it was a long time ago, move the whole lot to
archive.
Output something like:
C:\DATA\ALICE\THUMBS.DB 2005-07-19 18:56
C:\DATA\BOB\THUMBS.DB 2005-07-19 18:56
C:\DATA\CAROL\THUMBS.DB 2005-07-19 18:56
C:\DATA\DEREK\THUMBS.DB 2005-07-19 18:56
C:\DATA\ELENA\CONTRACT.DOC 2003-07-11 14:56
The file CONTRACT.DOC above is the newest meaningful file, and the rest
of the list is irrelevant to me. The THUMBS.DB are updated by the
system, and their dates are not of interest.
I can probably do this from the command line, using Windows ports of
Unix tools; something like
ls c:\DATA <some parameters> | SORT <some parameters> | HEAD <parameters
to show only the first few entries>
but this will take a while, and I don't want to reinvent the wheel.
Best wishes,
system which will let me display all the files in a directory and its
subdirectories listed by date?
The purpose: quickly check the date of the last meaningful change to any
file in the tree: if it was a long time ago, move the whole lot to
archive.
Output something like:
C:\DATA\ALICE\THUMBS.DB 2005-07-19 18:56
C:\DATA\BOB\THUMBS.DB 2005-07-19 18:56
C:\DATA\CAROL\THUMBS.DB 2005-07-19 18:56
C:\DATA\DEREK\THUMBS.DB 2005-07-19 18:56
C:\DATA\ELENA\CONTRACT.DOC 2003-07-11 14:56
The file CONTRACT.DOC above is the newest meaningful file, and the rest
of the list is irrelevant to me. The THUMBS.DB are updated by the
system, and their dates are not of interest.
I can probably do this from the command line, using Windows ports of
Unix tools; something like
ls c:\DATA <some parameters> | SORT <some parameters> | HEAD <parameters
to show only the first few entries>
but this will take a while, and I don't want to reinvent the wheel.
Best wishes,