Link to home
Start Free TrialLog in
Avatar of deatc
deatc

asked on

File Properties

Hi.  When you right-click on a file in Windows Explorer, select Properties, then select the Summary tab, Windows shows properties, such as title, subject, and author, about the file.  (I am using Windows XP Professional.)  Could you please tell me how to view and change these properties programmatically?  Thank you.
ASKER CERTIFIED SOLUTION
Avatar of AlexNek
AlexNek

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
FileInfo name = new FileInfo("yourfilename");

name.Properties = whatever you want.