3
3@work
Dear all
How to extract the file date (photo taken date for DC) into a table.
thx
How to extract the file date (photo taken date for DC) into a table.
thx
3@work said:Dear all
How to extract the file date (photo taken date for DC) into a table.
Ofer said:Another option will be
Dim oFSO As Object
Dim oF As Object
Set oFSO = CreateObject("Scripting.FileSystemObject")
Set oF = oFSO.GetFile("D:\My folder\File.TXT")
Debug.Print F.DateCreated
Debug.Print F.DateLastModified
Set oF = Nothing
Set oFSO = Nothing