PC Review


Reply
Thread Tools Rate Thread

Date file saved to Server

 
 
Barb Reinhardt
Guest
Posts: n/a
 
      24th Feb 2009
Hi, I'm in a bit of a quandry and I hope the group can assist. We have
Excel workbooks that are sent to one individual to save in a measurement
repository. I'm extracting data from these files and have been using the
date extracted from here

Set RootFolder = Fso_Obj.GetFolder(myPath)
For each File in RootFolder.Files
myModifyDate = File.datelastmodified
Next File

The problem I *think* I'm running into is that thie date is the date that
the original user last modified the file, not the date the file is saved to
the repository. Is there another date I can get from the File Object that
shows the date saved to the repository. THe file is not edited, it's just
downloaded from an email.

Thanks in advance,
Barb Reinhardt




 
Reply With Quote
 
 
 
 
Bob Phillips
Guest
Posts: n/a
 
      24th Feb 2009
Surely the date last modified is the date is saved to the repository, when
you modify it, it gets saved. There is no differentiation.

--
__________________________________
HTH

Bob

"Barb Reinhardt" <Barb (E-Mail Removed)> wrote in message
news:F59F84CC-6CB2-415E-A4B0-(E-Mail Removed)...
> Hi, I'm in a bit of a quandry and I hope the group can assist. We have
> Excel workbooks that are sent to one individual to save in a measurement
> repository. I'm extracting data from these files and have been using the
> date extracted from here
>
> Set RootFolder = Fso_Obj.GetFolder(myPath)
> For each File in RootFolder.Files
> myModifyDate = File.datelastmodified
> Next File
>
> The problem I *think* I'm running into is that thie date is the date that
> the original user last modified the file, not the date the file is saved
> to
> the repository. Is there another date I can get from the File Object
> that
> shows the date saved to the repository. THe file is not edited, it's
> just
> downloaded from an email.
>
> Thanks in advance,
> Barb Reinhardt
>
>
>
>



 
Reply With Quote
 
Barb Reinhardt
Guest
Posts: n/a
 
      25th Feb 2009
I just saved an Excel workbook to my desktop and moved it between folders
(which is functionally what's done. The date modified remained the same.
Any other ideas?

Barb Reinhardt


"Bob Phillips" wrote:

> Surely the date last modified is the date is saved to the repository, when
> you modify it, it gets saved. There is no differentiation.
>
> --
> __________________________________
> HTH
>
> Bob
>
> "Barb Reinhardt" <Barb (E-Mail Removed)> wrote in message
> news:F59F84CC-6CB2-415E-A4B0-(E-Mail Removed)...
> > Hi, I'm in a bit of a quandry and I hope the group can assist. We have
> > Excel workbooks that are sent to one individual to save in a measurement
> > repository. I'm extracting data from these files and have been using the
> > date extracted from here
> >
> > Set RootFolder = Fso_Obj.GetFolder(myPath)
> > For each File in RootFolder.Files
> > myModifyDate = File.datelastmodified
> > Next File
> >
> > The problem I *think* I'm running into is that thie date is the date that
> > the original user last modified the file, not the date the file is saved
> > to
> > the repository. Is there another date I can get from the File Object
> > that
> > shows the date saved to the repository. THe file is not edited, it's
> > just
> > downloaded from an email.
> >
> > Thanks in advance,
> > Barb Reinhardt
> >
> >
> >
> >

>
>
>

 
Reply With Quote
 
Barb Reinhardt
Guest
Posts: n/a
 
      25th Feb 2009
I've discovered that if the file is moved, but not modified,

File.datelastaccessed

is updated and

File.datelastmodified

remains the same. You learn something new every day.

Barb Reinhardt

"Bob Phillips" wrote:

> Surely the date last modified is the date is saved to the repository, when
> you modify it, it gets saved. There is no differentiation.
>
> --
> __________________________________
> HTH
>
> Bob
>
> "Barb Reinhardt" <Barb (E-Mail Removed)> wrote in message
> news:F59F84CC-6CB2-415E-A4B0-(E-Mail Removed)...
> > Hi, I'm in a bit of a quandry and I hope the group can assist. We have
> > Excel workbooks that are sent to one individual to save in a measurement
> > repository. I'm extracting data from these files and have been using the
> > date extracted from here
> >
> > Set RootFolder = Fso_Obj.GetFolder(myPath)
> > For each File in RootFolder.Files
> > myModifyDate = File.datelastmodified
> > Next File
> >
> > The problem I *think* I'm running into is that thie date is the date that
> > the original user last modified the file, not the date the file is saved
> > to
> > the repository. Is there another date I can get from the File Object
> > that
> > shows the date saved to the repository. THe file is not edited, it's
> > just
> > downloaded from an email.
> >
> > Thanks in advance,
> > Barb Reinhardt
> >
> >
> >
> >

>
>
>

 
Reply With Quote
 
Bob Phillips
Guest
Posts: n/a
 
      25th Feb 2009
.... because you have effectively created a new file?

--
__________________________________
HTH

Bob

"Barb Reinhardt" <Barb (E-Mail Removed)> wrote in message
news:5E854089-A6F3-4496-AEEF-(E-Mail Removed)...
> I've discovered that if the file is moved, but not modified,
>
> File.datelastaccessed
>
> is updated and
>
> File.datelastmodified
>
> remains the same. You learn something new every day.
>
> Barb Reinhardt
>
> "Bob Phillips" wrote:
>
>> Surely the date last modified is the date is saved to the repository,
>> when
>> you modify it, it gets saved. There is no differentiation.
>>
>> --
>> __________________________________
>> HTH
>>
>> Bob
>>
>> "Barb Reinhardt" <Barb (E-Mail Removed)> wrote in
>> message
>> news:F59F84CC-6CB2-415E-A4B0-(E-Mail Removed)...
>> > Hi, I'm in a bit of a quandry and I hope the group can assist. We
>> > have
>> > Excel workbooks that are sent to one individual to save in a
>> > measurement
>> > repository. I'm extracting data from these files and have been using
>> > the
>> > date extracted from here
>> >
>> > Set RootFolder = Fso_Obj.GetFolder(myPath)
>> > For each File in RootFolder.Files
>> > myModifyDate = File.datelastmodified
>> > Next File
>> >
>> > The problem I *think* I'm running into is that thie date is the date
>> > that
>> > the original user last modified the file, not the date the file is
>> > saved
>> > to
>> > the repository. Is there another date I can get from the File Object
>> > that
>> > shows the date saved to the repository. THe file is not edited, it's
>> > just
>> > downloaded from an email.
>> >
>> > Thanks in advance,
>> > Barb Reinhardt
>> >
>> >
>> >
>> >

>>
>>
>>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Date open file with date saved Rita Microsoft Excel Worksheet Functions 3 23rd Apr 2009 03:13 PM
Date modified changes when file not saved BAC Microsoft Excel Misc 5 3rd Jan 2008 12:49 PM
how do I show last date file saved? =?Utf-8?B?UGV0ZQ==?= Microsoft Excel Worksheet Functions 1 17th Feb 2005 06:25 PM
Date & Time file was last saved M.Siler Microsoft Excel Misc 1 4th Jun 2004 11:08 PM
Date File Last Saved SMK Microsoft Excel Misc 1 19th Feb 2004 03:31 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 09:19 AM.