標籤:
現在在公司加班,但是,不太喜歡現在這份工作,想去跳槽轉去C#,但是基礎太弱,在努力學習。加油
改天注釋一下這個代碼,然後去搬(jia)磚(ban)去嘍……
1 #include <windows.h> 2 /* 3 Get System Infomation and Copy to a File 4 */ 5 int main(int argc, TCHAR argv []) 6 { 7 // File Handle 8 HANDLE hFile; 9 DWORD dwWritten;10 // Char Array to Store the Path of the System Infomation11 TCHAR szSystemDir [MAX_PATH];12 //Get System Directory13 GetSystemDirectory(szSystemDir, MAX_PATH);14 15 //Creat File SystemRoot.txt16 hFile = CreateFile(17 "SystemRoot.txt",18 GENERIC_WRITE,19 0,NULL,CREATE_ALWAYS,20 FILE_ATTRIBUTE_NORMAL,21 NULL22 );23 if (hFile != INVALID_HANDLE_VALUE)24 {25 //Write the System Infomation to the File SystemRoot.txt26 if (!WriteFile(hFile, szSystemDir, lstrlen(szSystemDir), &dwWritten, NULL));27 {28 return GetLastError();29 }30 }31 //Close the File32 CloseHandle(hFile);33 return 0;34 }View Code
windows API編程第二天2015.11.15