zoukankan      html  css  js  c++  java
  • c#获取分区信息扩展

    using System;
    using System.Management;

    ...

    ManagementObject disk = new
    ManagementObject("win32_logicaldisk.deviceid="c:"");
    disk.Get();
    Console.WriteLine("Logical Disk Size = " + disk["Size"] + " bytes");
    Console.WriteLine("Logical Disk FreeSpace = " + disk["FreeSpace"] + "
    bytes");



    Drive Free Space

    There are several ways to get the drive free space:

    1. The interop way.

    using System.Runtime.InteropServices;

    [DllImport("kernel32.dll")]
    public static extern bool GetDiskFreeSpaceEx(
    string lpDirectoryName,
    out UInt64 lpFreeBytesAvailable,
    out UInt64 lpTotalNumberOfBytes,
    out UInt64 lpTotalNumberOfFreeBytes);

    ulong freeBytesAvailable = 0;
    ulong totalNumberOfBytes = 0;
    ulong totalNumberOfFreeBytes = 0;

    GetDiskFreeSpaceEx(
    "c:\\",
    out freeBytesAvailable,
    out totalNumberOfBytes,
    out totalNumberOfFreeBytes);

    2. The WMI Way

    We can use WMI by connecting to the “root\\cimv2” namespace and using the “Win32_LogicalDisk” class. Programming WMI isn’t pretty, but you can use the WMI extensions for VS ‘03 Server Explorer which makes it tolerable. Once installed, you’ll get a list of the management classes in server explorer and you can simply drag and drop the disk volume that you want to pull information from onto your application designer.

    You can then show free space on the volume with one line of code: MessageBox.Show(logicalDisk1.FreeSpace.ToString());

    using System;
    using System.Management;

    tatic void Main(string[] args)
    {
    WqlObjectQuery wmiquery = new WqlObjectQuery("SELECT * FROM Win32_LogicalDisk WHERE DeviceID = 'C:'");
    ManagementObjectSearcher wmifind = new ManagementObjectSearcher(wmiquery);

    foreach (ManagementObject mobj in wmifind.Get())
    {
    Console.WriteLine("Description: " + mobj["Description"]);
    Console.WriteLine("File system: " + mobj["FileSystem"]);
    Console.WriteLine("Free disk space: " + mobj["FreeSpace"]);
    Console.WriteLine("Size: " + mobj["Size"]);
    }
    }

    3. The Whidbey Way

    System.IO.DriveInfo.AvailableFreeSpace
  • 相关阅读:
    zabbix添加对haproxy的监控
    【转】最近搞Hadoop集群迁移踩的坑杂记
    【转】Hive配置文件中配置项的含义详解(收藏版)
    【转】Spark-Sql版本升级对应的新特性汇总
    kylin查询出现日期对应不上的情况
    【转】saiku与kylin整合备忘录
    Eclipse中Ctrl+方法名发现无法进入到该方法中……
    maven会报Could not transfer artifact xxx错误
    【转】CDH5.x升级
    【转】Kylin实践之使用Hive视图
  • 原文地址:https://www.cnblogs.com/captain_ccc/p/1521775.html
Copyright © 2011-2022 走看看