How do you get any file's last modified date using VB6?
|
|
|
|
|
|
|
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
|
||
|
|
|
Add a reference to the Microsoft Scripting Runtime (Project->References...) and use the following code:
|
||
|
|
|
|
||
|
|
|
|
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. |
||
|
