Obtain file creation date
bamver
Member Posts: 30
Hi!
Does anybody know how can I get the creation date of a file? I know that is possible to know the last written date and time, but I want the creation date.
Thanks!
Does anybody know how can I get the creation date of a file? I know that is possible to know the last written date and time, but I want the creation date.
Thanks!
0
Comments
-
You can try to use "'Microsoft Scripting Runtime'.File" automation and the property DateCreated.0
-
Thanks, Kine!! It's exactly what I was looking for. But I don't know how to use those variables. I mean, which is exactly the code to open a textfile? I suppose It's necessary to use another "'Microsoft Scriptime Runtime'.FileSystemObject" variable, but I don't know how.
Thank you very much in advance.0 -
Something like this:
FileAut := FyleSystemObject.GetFile(FileName); MESSAGE('%1',FileAut.DateCreated);
But when I tried, I had problem that it could not find any file with path. It took only file name (without path part) and was searching for this file in Client folder.0 -
Hi BamVer.
You got to get the folder object before you can get the file object as Kine wrote.
Best RegardsIt is impossible to make anything foolproof, because fools are so ingenious.0 -
Got it!!
The code I use:
CREATE(FileSystemObject);
File := FileSystemObject.GetFile(CurrDataport.FILENAME);
MESSAGE(FORMAT(File.DateCreated));
Thank you very much, Kine and Soft Tod!0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.7K Microsoft Dynamics NAV
- 18.8K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 328 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions
