GetFileTime (kernel32)
Last changed: -92.46.219.28

.
Summary

C# Signature:

[DllImport("kernel32.dll")]
static extern bool GetFileTime(IntPtr hFile, IntPtr lpCreationTime,
   IntPtr lpLastAccessTime, IntPtr lpLastWriteTime);

VB.Net Signature:

<DllImport( _
            "kernel32.dll", _
            CharSet:=CharSet.Auto, _
            SetLastError:=True)> _
         Friend Shared Function GetFileTime( _
                        ByVal hFile As IntPtr, _
                        <Out()> ByRef lpCreationTime As IntPtr, _
                        <Out()> ByRef lpLastAccessTime As IntPtr, _
                        <Out()> ByRef lpLastWriteTime As IntPtr) _
                    As Boolean
        End Function

User-Defined Types:

None.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

Do you know one? Please contribute it!

Documentation
GetFileTime on MSDN