vote up 3 vote down star

How can I get the filesize of the currently-selected file in my Openfiledialog?

flag

13% accept rate
3  
Do you mean while the dialogue is open, or after the dialogue has been closed? Do you mean for the program or for the user of the program? – Richard Aug 24 at 11:10
I have a feeling that some interop will be needed here :-) Nice question though BTW, Interesting – REA_ANDREW Aug 24 at 11:14
More clarification please, as per Richard's comment. – Ian Kemp Aug 24 at 11:19

5 Answers

vote up 0 vote down

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

link|flag
System.IO.FileInfo – ThePower Aug 25 at 9:52
oh thanx ThePower – Mary Aug 25 at 10:35
vote up 0 vote down

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.

public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            if (openFileDialog1.ShowDialog() == DialogResult.OK)
            {
                if (openFileDialog1.Multiselect)
                {
                    long total = 0;
                    foreach (string s in openFileDialog1.FileNames)
                        total += new FileInfo(s).Length;
                    MessageBox.Show(total.ToString());


                }
                else
                {
                    MessageBox.Show(new FileInfo(openFileDialog1.FileName).Length.ToString());
                }


            }
        }

File size during dialogue I feel would need to use interop

Andrew

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

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:

var fileInfo = new FileInfo(path);

And from the FileInto you can get the size of the file like this

fileInfo.Length

For more info look at this msdn page.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.