vote up 1 vote down star

How do you get any file's last modified date using VB6?

flag

4 Answers

vote up 6 vote down check

There is a built in VB6 function for that - no need for FSO (although FSO is great for more advanced file operations)

From http://msdn.microsoft.com/en-us/library/aa262740%28VS.60%29.aspx

Dim MyStamp As Date
MyStamp = FileDateTime("C:\TESTFILE.txt")
link|flag
+1. I recommend avoiding FileSystemObject if possible. It's not always present on user machines. We had a helpdesk problem last month because a paranoid IT department had crippled FileSystemObject, and that broke some software we maintain. Here the native VB6 technique is one line, and the FSO code is at least 3 lines. – MarkJ Nov 2 at 17:32
vote up 1 vote down

Add a reference to the Microsoft Scripting Runtime (Project->References...) and use the following code:

Dim fso As New FileSystemObject
Dim fil As File

Set fil = fso.GetFile("C:\foo.txt")
Debug.Print fil.DateLastModified
link|flag
-1. I recommend avoiding FileSystemObject if possible. It's not always present on user machines. We had a helpdesk problem last month because a paranoid IT department had crippled FileSystemObject, and that broke some software we maintain. Also this can be done in one line in native VB6: must be better than 4 lines with FileSystemObject. – MarkJ Nov 2 at 17:34
vote up 1 vote down

MSDN Link

Dim fs As New Scripting.FileSystemObject
Dim f
Set f = fs.GetFile("path/to/file")
f.DateLastModified
link|flag
vote up 1 vote down

You can use the FileSystemObject here's an example

You can also check out the MSDN documentation the samples are for scripting but they should be translatable to VB6 easily.

link|flag
-1. I recommend avoiding FileSystemObject if possible. It's not always present on user machines. We had a helpdesk problem last month because a paranoid IT department had crippled FileSystemObject, and that broke some software we maintain. Also this can be done in one line in native VB6, not 4 lines of FileSystemObject. – MarkJ Nov 2 at 17:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.