c# - Read/Write Info in File Details tab - Windows/File Explorer -
when right-click file in windows/file explorer > properties > details, whole lot of useful information file.
how can programmatically access information in c#?
the somewhat (no offense) answer i've come across after months of searching solution how details file properties? - answer written 4 years ago. there has better way achieve goal now, right?
use fileinfo class.
fileinfo ofileinfo = new fileinfo(strfilename);
now, ofileinfo
object, can access file properties.
Comments
Post a Comment