in reply to How to find the create time of a file under MS

The API's you're looking for are the FindFirstFile and the FindNextFile APIs, which return, the created, last-accessed and last-modified date. To use these, you could use the Win32::API module.
  • Comment on Re: How to find the create time of a file under MS