码迷,mamicode.com
首页 > Windows程序 > 详细

windows API编程第二天2015.11.15

时间:2015-11-15 19:09:22      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:

现在在公司加班,但是,不太喜欢现在这份工作,想去跳槽转去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 Infomation
11     TCHAR szSystemDir [MAX_PATH];
12     //Get System Directory
13     GetSystemDirectory(szSystemDir, MAX_PATH);
14 
15     //Creat File SystemRoot.txt
16     hFile = CreateFile(
17         "SystemRoot.txt",
18         GENERIC_WRITE,
19         0,NULL,CREATE_ALWAYS,
20         FILE_ATTRIBUTE_NORMAL,
21         NULL
22         );
23     if (hFile != INVALID_HANDLE_VALUE)
24     {
25         //Write the System Infomation to the File SystemRoot.txt
26         if (!WriteFile(hFile, szSystemDir, lstrlen(szSystemDir), &dwWritten, NULL));
27         {
28             return GetLastError();
29         }
30     }
31     //Close the File
32     CloseHandle(hFile);
33     return 0;
34 }
View Code

 

windows API编程第二天2015.11.15

标签:

原文地址:http://www.cnblogs.com/wangzefeng/p/4966964.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!