L
Lou
How do I get file version, bitmap,date modified, all the stuff about files.
Thanks
-Lou
Thanks
-Lou
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
William Ryan said:Dim f As New FileInfo("C:\Contact.bmp")
Debug.WriteLine(f.LastWriteTime.ToString)
Debug.WriteLine(f.LastAccessTime.ToString)
Debug.WriteLine(f.CreationTime.ToString)
Debug.WriteLine(f.Name)
Debug.WriteLine(f.Length)
Debug.WriteLine(f.Attributes.ReadOnly.ToString)
'etc
William Ryan said:Dim f As New FileInfo("C:\Contact.bmp")
Debug.WriteLine(f.LastWriteTime.ToString)
Debug.WriteLine(f.LastAccessTime.ToString)
Debug.WriteLine(f.CreationTime.ToString)
Debug.WriteLine(f.Name)
Debug.WriteLine(f.Length)
Debug.WriteLine(f.Attributes.ReadOnly.ToString)
'etc
Lou said:This class doesn't give me the file version???
Lou said:How do I get the bitmap associated with the file?
Lou said:There is nothing in the help files for FileVersionInfo relating to
this.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.