hi!
is there any way for me to get a file's attributes when I open a file using the openFileDialog method. i want to know the date the file was created.
thks
Printable View
hi!
is there any way for me to get a file's attributes when I open a file using the openFileDialog method. i want to know the date the file was created.
thks
Take the path returned from openFileDialog and thenQuote:
Originally posted by Gabro
hi!
is there any way for me to get a file's attributes when I open a file using the openFileDialog method. i want to know the date the file was created.
thks
DateTime creation = File.GetCreationTime(path)
thx for ur helpQuote:
Originally posted by jparsons
Take the path returned from openFileDialog and then
DateTime creation = File.GetCreationTime(path)