版权声明:本文为小斑马伟原创文章,转载请注明出处!
一、大文件拷贝
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<math.h>
#include<time.h>
#define SIZE 1024
#include<sys/types.h>
#include<sys/stat.h>
int main(int argc, char* argv[]) {
for (int i = 0; i < argc; i++) {
printf("%s\n", argv[i]);
}
//用户输入参数缺少
if (argc < 3) {
printf("缺少参数");
}
//D:/copy.exe D:/test.avi D:/Code/test.avi
//argv[0] 程序名称 文件大小是50M
FILE* fp1 = fopen(argv[1], "rb");
FILE* fp2 = fopen(argv[2], "wb");
if (!fp1 || !fp2) {
printf("复制文件出错\n");
return -2;
}
char* temp = NULL;
int size = 0;
struct stat st;
stat(argv[1], &st);
//根据文件实际大小开辟空间
if (st.st_size > SIZE) {
temp = (char*)malloc(sizeof(char)* SIZE);
size = SIZE;
} else {
temp = (char*)malloc(sizeof(char)* st.st_size +10);
size = st.st_size + 10;
}
int count = 0;
while (!feof(fp1)) {
mement(temp, 0, size);
count = fread(temp, sizeof(char), size, fp1);
fwrite(temp, sizeof(char), count, fp2);
}
free(temp);
fclose(fp2);
fclose(fp1);
return EXIT_SUCCESS;
}
二、获取文件状态
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<math.h>
#include<time.h>
#include<sys/types.h>
#include<sys/stat.h>
int main(void) {
//文件状态结构体变量
struct stat st;
stat("D:/copy.exe", &st);
printf("文件大小:%d\n", st.st_size);
printf("获取文件最后一次访问的时间:%d\n", st.st_atime);
printf("获取文件最后一次修改的时间:%d\n", st.st_mtime);
system("pause");
return EXIT_SUCCESS;
}
三、文件的随机读写
#include<stdio.h>
int fseek(FILE* stream,long offset,int whence);
功能:移动文件(文件光标)的读写位置.
参数: stream 已经打开的文件指针 offset:根据whence来移动的位移数(偏移量),可以是正数,也可以负数,如果正数,则相对于whence往后移动,如果是负数,则相对于whence往左移动。如果向前移动的字节数超过文件开头则出错返回,如果向后移动的字节数超过了文件末尾,再次写入时将增大文件尺寸。whence:其取值如下:
SEEK_SET:从文件开头移动offset个字节
SEEK_CUR:从当前位置移动offset个字节
SEEK_END:从文件末尾移动offset个字节
返回值: 成功 0 失败 -1
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<math.h>
#include<time.h>
int main(void) {
FILE* fp = fopen("D:/a.txt", "r");
if (!fp)
return -1;
char arr[100];
memset(arr, 0, 100);
fgets(arr, 100, fp);
printf("%s", arr);
memset(arr, 0, 100);
fgets(arr, 100, fp);
printf("%s", arr);
//文件随机读写
fseek(fp, -8, SEEK_CUR);
memset(arr, 0, 100);
fgets(arr, 100, fp);
printf("%s", arr);
//从文件开始位置
fseek(fp, 11, SEEK_SET);
memset(arr, 0, 100);
fgets(arr, 100, fp);
printf("%s", arr);
//从文件末尾位置
fseek(fp, -17, SEEK_END);
memset(arr, 0, 100);
fgets(arr, 100, fp);
printf("%s", arr);
fclose(fp);
return EXIT_SUCCESS;
}
int main(void) {
FILE* fp = fopen("D:/a.txt", "r+");
if (!fp)
return -1;
//获取光标的位置
long pos = ftell(fp);
printf("%ld\n", pos);
fseek(fp, -17, SEEK_END);
fputs("你好 哈哈\n", fp);
fclose(fp);
return EXIT_SUCCESS;
}
int main(void) {
FILE* fp = fopen("D:/a.txt", "w");
if (!fp)
return -1;
char ch1[] = "hello 哈哈哈\n";
char ch2[] = "world";
fputs(ch1, fp);
fseek(fp, -14, SEEK_CUR);
fputs(ch2, fp);
fclose(fp);
return EXIT_SUCCESS;
}
四、获取文件光标位置
#include<stdio.h>
long ftell(FILE* stream);
功能:获取文件流(文件光标)的读写位置。
参数:stream :已经打开的文件指针
返回值:成功:当前文件流(光标光标)的读写位置 失败 -1
int main(void) {
FILE* fp = fopen("D:/a.txt", "r");
if (!fp)
return -1;
char arr[100];
//获取文件光标流所在位置
long pos = ftell(fp);
printf("%ld\n", pos);
fgets(arr, 100, fp);
fseek(fp, 8, SEEK_CUR);
pos = ftell(fp);
printf("%ld\n", pos);
//重置文件光标在起始位置
rewind(fp);
memset(arr, 0, 100);
fgets(arr, 100, fp);
printf("%s\n", arr);
return EXIT_SUCCESS;
}
五、删除文件、重命名文件名
#include<stdio.h>
int remove(const char* pathname);
功能:删除文件
参数:pathname:文件名
返回值:成功 0 失败 -1
#include<stdio.h>
int rename(const char* oldpath,const char* newpath);
功能:把oldpath的文件名改为newpath
参数:oldpath:旧文件名 newpath:新文件名
返回值:成功 0 失败 -1
int main() {
int value = remove("D:/b.txt");
if (value == 0) {
printf("删除文件成功\n");
}
else {
printf("删除文件失败\n");
}
return EXIT_SUCCESS;
}
int main(void) {
//重命名
int value = rename("D:/a.txt", "D:/abc.txt");
//移动文件 剪切
int value = rename("D:/a.txt", "D:/Code/abc.txt");
if (value == 0) {
printf("成功\n");
}
else {
printf("失败\n");
}
return EXIT_SUCCESS;
}
六、文件缓冲区
文件缓冲区:ANSI C标准采用"缓冲文件系统"处理数据文件。
所谓缓冲文件系统是指系统自动地在内存区为程序中每一个正在使用的文件开辟一个文件缓冲区从内存向磁盘输出数据必须先送到内存中的缓冲区,装满缓冲区后才一起送到磁盘区。
如果从磁盘向计算机读入数据,则一次从磁盘文件将一批数据输入到内存缓冲区(充满缓冲区)。然后再从缓冲区逐个地将数据送到程序数据区(给程序变量)
int fflush(FILE* stream)
功能:更新缓冲区,让缓冲区的数据立马写到文件中。
参数:stream 文件指针
返回值:成功 0 失败 -1
int main(void) {
FILE* fp = fopen("D:/a.txt", "r");
if (!fp)
return -1;
char ch;
while (1) {
scanf("%c", &ch);
if (ch == '@') {
break;
}
//频繁的和硬盘交互 损伤硬盘
fflush(fp);
fputc(ch, fp);
}
fclose(fp);
return EXIT_SUCCESS;
}