Last modified date

Hi,

i want to know the last modified date of an external file from my
application.
Is it possible…?

Mahendra W. wrote:

Hi,

i want to know the last modified date of an external file from my
application.
Is it possible…?

http://rubycentral.com/book/ref_c_file.html

has a listing of all the File class methods…that is what you are
looking for.

http://rubycentral.com/book/ref_c_file.html#File.mtime

is for the last modified time. you got atime, which is for access time,
and other interesting methods. fun looking into…

enjoy the ride…

Shai R. wrote:

Mahendra W. wrote:

Hi,

i want to know the last modified date of an external file from my
application.
Is it possible…?

http://rubycentral.com/book/ref_c_file.html

has a listing of all the File class methods…that is what you are
looking for.

http://rubycentral.com/book/ref_c_file.html#File.mtime

is for the last modified time. you got atime, which is for access time,
and other interesting methods. fun looking into…

enjoy the ride…

Hi Shai,

Thanks. It’s really interesting…