欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C语言——创建文件

程序员文章站 2022-05-02 17:46:09
...

创建文件

#include <stdio.h>
int main(int argc,char *argv[]){
f(argc != 2){
    printf("param error");
    return 1;
 }else{
    FILE *fd = fopen(*(argv+1),"w+");
    if(fd != NULL){
        printf("%s is created.\n",*(argv+1));
    }
  }
  return 0;
}

编译运行:

~/Desktop/Mc$ gcc create.c -o create
~/Desktop/Mc$ ./create hello.txt
hello.txt is created.
[email protected]:~/Desktop/Mc$ ls
hello.txt  

谢谢阅读。

相关标签: 创建文件