Why no forum for Dirdate?

Discuss our other products here. Get help with installation and running, notify us of bugs, request new features and enhancements.

Moderators: DataMystic Support, Moderators, DataMystic Support, Moderators, DataMystic Support, Moderators

Post Reply
Chiurato
Posts: 1
Joined: Mon Feb 28, 2011 3:30 am

Why no forum for Dirdate?

Post by Chiurato »

I see forums for all your products except dirdate. Looking for some help here. The following function does not work in the barch file
"If you have restored a set of files and they all have a creation date of 'now', then you
can easily set the creation date to the last modified date using:"

FOR /R %%A IN (*.*) DO dirdate -CREATION file="%%A" "%A"

I copied that exact line into notepad and saved it as a batch file (.bat) and nothing happens! Screen flashes Spews out
Getting reference date/time <modified> from file d:\blah blah blah..word.doc
Done

Not it aint! Nothing changes!
Wazzup?
User avatar
DataMystic Support
Site Admin
Posts: 2227
Joined: Mon Jun 30, 2003 12:32 pm
Location: Melbourne, Australia
Contact:

Re: Why no forum for Dirdate?

Post by DataMystic Support »

Hmm, please try:

Code: Select all

FOR /R %%A IN (*.*) DO dirdate -CREATION file="%A" "%A"
Post Reply