在Rust中实现的FAT文件系统库。 特征: 使用标准的读/写特征读取/写入文件 读取目录内容 创建/删除文件或目录 重命名/移动文件或目录 读/写文件时间戳(如果启用了chrono功能,则会自动更新) 格式量 FAT12,FAT16,FAT32兼容性 支持LFN(长文件名)扩展名 基本的no_std环境支持 用法 将此添加到您的Cargo.toml : [...
You can start using the fatfs library now: let img_file = File::open("fat.img")?; let fs = fatfs::FileSystem::new(img_file, fatfs::FsOptions::new())?; let root_dir = fs.root_dir(); let mut file = root_dir.create_file("hello.txt")?; file.write_all(b"Hello World!")?