ULARGE_INTEGER lpSectorsPerCluster;
ULARGE_INTEGER lpBytesPerSector;
ULARGE_INTEGER lpNumberOfFreeClusters;
GetDiskFreeSpaceEx("C://",&lpSectorsPerCluster,&lpBytesPerSector,&lpNumberOfFreeClusters);
printf("DiskFressSpace:%4.4fGB",lpBytesPerSector.QuadPart/1024.0/1024.0/1024.0);