赞
踩
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <unistd.h>
- #include <stdio.h>
- #include <string.h>
- #include <stdlib.h>
-
- int main(void)
- {
- int fd;
- /* 打开文件 */
- fd = open("./test_file", O_WRONLY | O_TRUNC);
- if (-1 == fd)
- {
- perror("open error");
- exit(-1);
- }
- /* 关闭文件 */
- close(fd);
- exit(0);
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。