폴더 크기 및 사용 공간 보기

7797 단어
차리다
  1.묶음: 파일의 크기와 공간을 차지하는 의미를 이해하려면 먼저 묶음의 정의를 알아야 한다.관련 정보는 여기를 보세요.
  2.GetDisk FreeSpace: 디스크의 사용 가능한 공간을 포함하여 지정된 디스크에 대한 정보를 얻습니다(Retrieves information about the specified disk, including the amount of free space on the disk).여기 참고로이 방법은kernel32에서 나온 것입니다.dll.구체적인 호출은 본문을 보십시오.
본문
  1.디스크 정보를 보려면 GetDiskFreeSpace를 호출합니다.
/// 
/// Retrieves information about the specified disk, including the amount of free space on the disk.
/// , 。
///
/// 。 :"C:\\"
///
///
///
///
///
[DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Auto)]
static extern bool GetDiskFreeSpace(string lpRootPathName,
out uint lpSectorsPerCluster,
out uint lpBytesPerSector,
out uint lpNumberOfFreeClusters,
out uint lpTotalNumberOfClusters);

  2.获取指定磁盘的簇大小。

public int BytesPerCluster(string drive)
{
uint lpSectorsPerCluster;
uint lpBytesPerSector;
uint lpNumberOfFreeClusters;
uint lpTotalNumberOfClusters;
GetDiskFreeSpace(drive,
out lpSectorsPerCluster,
out lpBytesPerSector,
out lpNumberOfFreeClusters,
out lpTotalNumberOfClusters);
return (int)(lpBytesPerSector * lpSectorsPerCluster);
}

  3.폴더 크기와 사용 공간을 가져옵니다.
public void DirectoryProperities(string path, int bytesPerCluster, ref long size, ref long usage)
{
long temp;
FileInfo fi = null;
foreach (string file in Directory.GetFiles(path, "*", SearchOption.AllDirectories))
{
fi = new FileInfo(file);
temp = fi.Length;
size += temp;
usage += temp + (temp % bytesPerCluster == 0 ? 0 : bytesPerCluster - temp % bytesPerCluster);
}
}

  4.나머지는 제법 연산이다.
private void Form1_Load(object sender, EventArgs e)
{
if (folderBrowserDialog1.ShowDialog() == DialogResult.OK)
{
string path = folderBrowserDialog1.SelectedPath;
long size = 0, usage = 0;
DirectoryProperities(path, BytesPerCluster(Path.GetPathRoot(path)), ref size, ref usage);
lblSize.Text = ((double)size / 1024 / 1024).ToString("0.00 MB")
+ "(" + size.ToString("N0") + " )";
lblUsage.Text = ((double)(usage >> 10) / 1024).ToString("0.00 MB")
+ "(" + usage.ToString("N0") + " )";
}
}

  5.큰 성과를 거두다.
전재 대상:https://www.cnblogs.com/ainijiutian/archive/2010/01/06/1640760.html

좋은 웹페이지 즐겨찾기