52ky 发表于 2022-10-4 16:31:51

C语言实现文件系统

模拟linux文件系统写的程序,比较简单。该文件系统物理基础为磁道(40)0~39道。每个磁道划分为8个扇区,每个扇区有512B。该文件系统实现了文件的创建,删去,打开,读写,关闭,检测,目录的创建,删去等。
文件系统\FileSystem.c
.....

(The program written to simulate the Linux file system is relatively simple. The physical basis of the file system is tracks (40) 0~39. Each track is divided into 8 sectors, each sector has 512B. The file system realizes the creation, deletion, opening, reading and writing, closing, detection of files, creation and deletion of directories, etc.
File SystemFileSystem. c
.....)




页: [1]
查看完整版本: C语言实现文件系统