#include<stdio.h>intmain(){FILE *file;file =fopen("example.txt","w");// 以写入方式打开文件if(file !=NULL){fprintf(file,"Hello, World!\n");// 向文件中写入内容fclose(file);// 关闭文件流printf("File opened and written successfully.\n");}else{printf("Failed to open the file.\n");}return0;}
#include<stdio.h>intmain(){FILE *file;int ch;file =fopen("example.txt","r");// 以只读方式打开文件if(file !=NULL){while((ch =fgetc(file))!=EOF){// 逐字节读取文件内容putchar(ch);// 将读取到的字符打印到控制台}fclose(file);// 关闭文件流}else{printf("Failed to open the file.\n");}return0;}
#include<stdio.h>intmain(){FILE *file;char buffer[100];file =fopen("example.txt","r");// 以只读方式打开文件if(file !=NULL){while(fgets(buffer,sizeof(buffer), file)!=NULL){// 逐行读取文件内容printf("%s", buffer);// 将读取到的行打印到控制台}fclose(file);// 关闭文件流}else{printf("Failed to open the file.\n");}return0;}
#include<stdio.h>#include<string.h>intmain(int argc,char*argv[]){ FILE* fp =fopen("xxx","r");if(fp ==NULL){perror("fopen:");return-1;}char buf[64]={0};memset(buf,'#',sizeof(buf));fgets(buf,5, fp);for(int i =0; i <64; i++){printf("%c", buf[i]);}printf("\n");return0;}
#include<stdio.h>structStudent{char name[50];int age;};intmain(){FILE *file;structStudent student;file =fopen("example.dat","wb");// 以二进制写入方式打开文件if(file !=NULL){student.age =20;fwrite(&student,sizeof(structStudent),1, file);// 将学生结构体写入文件fclose(file);// 关闭文件流printf("Student data written successfully.\n");}else{printf("Failed to open the file.\n");}return0;}
#include<stdio.h>intmain(){FILE *file;char ch;file =fopen("example.txt","r");// 以只读方式打开文件if(file !=NULL){fseek(file,5,SEEK_SET);// 将文件指针定位到文件头后的第5个字节处ch =fgetc(file);// 读取第5个字节printf("Character at position 5: %c\n", ch);fclose(file);// 关闭文件流}else{printf("Failed to open the file.\n");}return0;}
#include<stdio.h>#include<dirent.h>intmain(){DIR *dir;structdirent*entry;dir =opendir(".");// 打开当前文件夹if(dir !=NULL){while((entry =readdir(dir))!=NULL){// 逐个读取文件夹中的文件信息printf("%s\n", entry->d_name);// 打印文件名}closedir(dir);// 关闭目录流}else{printf("Failed to open the directory.\n");}return0;}