Windows编程之文件操作

Windows编程之文件操作

该程序主要功能就是创建一个文件,然后在文件的后面追加数据,之后将文件复制到上层目录,然后将其重命名,最后再删除。
所应用到的windows函数有CreateFile, WriteFile, CopyFile, MoveFile, DeleteFile, SetFilePointer

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39

#include <windows.h>
#include <stdio.h>


int main(int argc, char* argv[]) {
HANDLE hFile = CreateFile(argv[1], GENERIC_WRITE, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
if (hFile == INVALID_HANDLE_VALUE) {
printf("Create failed\n");
return 0;
}
if (SetFilePointer(hFile, 0, NULL, FILE_END) == -1) {
printf("SetFilePointer error\n");
return 0;
}
char buff[] = "配置信息";
DWORD dwWrite;
if (!WriteFile(hFile, &buff, strlen(buff), &dwWrite, NULL)) {
printf("Writer error\n");
return 0;
}
printf("往%s写入数据成功\n", argv[1]);
char newCopyPath[] = "../2.txt";
char newMovePath[] = "../3.txt";
if (!CopyFile(argv[1], newCopyPath, FALSE)) {
printf("CopyFile error\n");
return 0;
}
if (!MoveFile(newCopyPath, newMovePath)) {
printf("MoveFile error\n");
return 0;
}
if (!DeleteFile(newMovePath)) {
printf("DeleteFile error\n");
return 0;
}
CloseHandle(hFile);
return 0;
}

本文标题:Windows编程之文件操作

文章作者:Pino-HD

发布时间:2018年09月25日 - 10:09

最后更新:2018年09月27日 - 17:09

原始链接:https://pino-hd.github.io/2018/09/25/Windows编程之文件操作/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。

坚持原创技术分享,您的支持将鼓励我继续创作!