How can I get the filesize of the currently-selected file in my Openfiledialog?
|
|
|||||||||
|
|
|
hi thanx for answers i want get filesize after the filedialog has been closed and show it i get file path from [System.IO.Path.GetDirectoryName(op.FileName);] but i can not find FILEINFo class |
||
|
|
Without interop and like the first comment, once the dialogue has been complete i.e. file/s have been selected this would give the size.
File size during dialogue I feel would need to use interop Andrew |
||
|
|
|
|
If you mean when the dialog is running, I suspect you just change the file view to details. However if you mean programmatically I suspect that you'd have to hook a windows message when the file is selected. |
||
|
|
|
|
I think there is 3 way, creating your custom open dialog or setting by code the view as detail or asking the user to use detail view |
||
|
|
|
|
You can't directly get it from the OpenFieldDialog. You need to take the file path and consturct a new FileInfo object from it like this:
And from the FileInto you can get the size of the file like this
For more info look at this msdn page. |
||
|
|
