1c:\Documents and Settings\Administrator\Plocha\Pb167\Seminar1\wintestc\wintestc.cpp // wintestc.cpp : Defines the entry point for the console application. // #include "stdafx.h" int _tmain(int argc, _TCHAR* argv[]) { ULARGE_INTEGER bytesfree, bytestotal; BOOL fResult; fResult = GetDiskFreeSpaceEx ("C:\\",&bytesfree, &bytestotal, NULL); if(!fResult) { printf("Error!\n"); exit(1); } printf("On C drive - Free: %I64u bytes, Total: %I64u bytes.\n",bytesfree, bytestotal); return 0; }