【操作系统学习笔记】文件管理1.5
参考书籍: 王道考研
视频地址: Bilibili
逻辑结构 VS 物理结构
-
逻辑结构: 从用户角度看,由创建文件的用户自己设计的
-
无结构文件
// 在用户看来是一篇连续的空间 FILE *fp = fopen("test.txt", "r"); if (fp == NULL) { puts("文件打开失败!"); exit(0); } fseek(fp, 16, SEEK_SET); char c = fgetc(fp); printf("字符: %d", c); fclose(fp);
-
有结构文件
-
顺序文件
typedef struct { int number; char name[30]; char major[30]; } Student; // 写入 FILE *fp = fopen("students.txt", "w"); if (fp == NULL) { printf("文件打开失败!"); exit(0); } Student student[N]; for (int i = 0; i < N; i++) { student[i].number = i; student[i].name[0] = '?'; student[i].major[0] = '?'; } fwrite(student, sizeof(Student), N, fp); fclose(fp);
// 读取 FILE *fp = fopen("students.txt", "r"); if (fp == NULL) { printf("文件打开失败!"); exit(0); } fseek(fp, 5 * sizeof(Student), SEEK_SET); Student stu; fread(&stu, sizeof(Student), 1, fp); printf("学生编号: %d", stu.number); fclose(fp);
- 顺序存储
- 链式存储
-
索引文件
-
索引顺序文件文章来源:https://www.toymoban.com/news/detail-837437.html
-
-
-
物理结构: 从操作系统看,由操作系统决定文章来源地址https://www.toymoban.com/news/detail-837437.html
// 在操作系统看来是一堆二进制数据
- 连续分配
- 链接分配
- 索引分配
到了这里,关于【操作系统学习笔记】文件管理1.5的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!