Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,900 questions

51,831 answers

573 users

How to get free and available and total disk space in bytes using kernel32.dll in C#

1 Answer

0 votes
using System.Runtime.InteropServices;

namespace WinFormsApp1
{
    public partial class Form1 : Form
    {
        [DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Auto)]
        static extern bool GetDiskFreeSpaceEx(string lpDirectoryName,
                                    out ulong lpFreeBytesAvailable,
                                    out ulong lpTotalNumberOfBytes,
                                    out ulong lpTotalNumberOfFreeBytes);
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            ulong freeBytesAvailable;
            ulong totalNumOfBytes;
            ulong totalNumOfFreeBytes;

            if (!GetDiskFreeSpaceEx("C:\\", out freeBytesAvailable, out totalNumOfBytes, out totalNumOfFreeBytes))
            {
                Console.Error.WriteLine("GetDiskFreeSpaceEx Error");
            }
            else
            {
                label1.Text = "";
                label1.Text += "Available bytes: " + string.Format("{0:n}", freeBytesAvailable) + Environment.NewLine;
                label1.Text += "Total # of bytes: " + string.Format("{0:n}", totalNumOfBytes) + Environment.NewLine;
                label1.Text += "Total free bytes: " + string.Format("{0:n}", totalNumOfFreeBytes) + Environment.NewLine;
            }
        }
    }
}



/*
 * run:
 *
 * Available bytes: 541,480,148,992.00
 * Total # of bytes: 999,559,262,208.00
 * Total free bytes: 541,480,148,992.00
 * 
 */

 



answered Aug 19, 2023 by avibootz

Related questions

1 answer 102 views
102 views asked Aug 20, 2023 by avibootz
1 answer 98 views
98 views asked Aug 20, 2023 by avibootz
1 answer 133 views
133 views asked Aug 20, 2023 by avibootz
1 answer 91 views
1 answer 134 views
...