PDA(WIN CE/WINDOWS MOBILE)의 디스크 용량 정보 구하는 API입니다. [System.Runtime.InteropServices.DllImport("coredll", SetLastError = true)] static extern bool GetDiskFreeSpaceEx(string directoryName, ref long freeBytesAvailable, ref long totalBytes, ref long totalFreeBytes); private void button_Click(object sender, EventArgs e) { long freeBytesAvailable = 0, total..