Aug 2, 2002 #1 tmryan Programmer Dec 22, 2000 73 US I have an open file that I opened with FileOpen(1, OpenFileDialog1.FileName, OpenMode.Input). How do I read the File create date of the file? Thanks Tim Tim Ryan PROGRESS Developer
I have an open file that I opened with FileOpen(1, OpenFileDialog1.FileName, OpenMode.Input). How do I read the File create date of the file? Thanks Tim Tim Ryan PROGRESS Developer
Aug 5, 2002 #2 chiph Programmer Jun 9, 1999 9,878 US Use the static GetCreationTime method of the File object. Dim MyFile as File Dim CT as DateTime CT = MyFile.GetCreationTime("c://mypath" Chip H. Upvote 0 Downvote
Use the static GetCreationTime method of the File object. Dim MyFile as File Dim CT as DateTime CT = MyFile.GetCreationTime("c://mypath" Chip H.