# BLGS_fs **Repository Path**: BLGS/blgs_fs ## Basic Information - **Project Name**: BLGS_fs - **Description**: File system based on Chapter IV in OS experiment of Harbin Institution of technology, Shenzhen (http://hitsz-lab.gitee.io/os-labs-2021), which need ddriver as the virtual driver to disk. - **Primary Language**: C - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-04-24 - **Last Updated**: 2022-05-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README File system based on Chapter IV in OS experiment of Harbin Institution of technology, Shenzhen (http://hitsz-lab.gitee.io/os-labs-2021), which need ddriver as the virtual driver to disk. Its mainly construction is as follow: ``` /------------------ / /---include(which declares a series of definition and functions) / | / |--- bf.h (Declares several functions) / |--- types.h (Declares the mainly construction of file system and macros) / |--- ddriver.h / \--- ddriver_ctl_user.h / / /---src(which stores the mainly implements of functions) / | / |--- bf.c / |--- bf_utils.c / / /---tests(which stores the test program provided by OS-experiment) ```