Update README.md
This commit is contained in:
parent
7950185d3e
commit
5230ee018a
3 changed files with 3 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
# FUSE implementation for the FAT file system
|
# FUSE implementation for the FAT file system
|
||||||
|
|
||||||
End-to-end implementation of a FAT driver, with the goal of being able to mount disk image with complete read-write support.
|
End-to-end implementation of a FAT driver, with the goal of being able to mount disk images with complete read-write support.
|
||||||
|
|
||||||
Uses (fuser)[https://docs.rs/fuser/latest/fuser/] as the underlying FUSE library.
|
Uses (fuser)[https://docs.rs/fuser/latest/fuser/] as the underlying FUSE library.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,3 @@
|
||||||
use std::time::SystemTime;
|
|
||||||
|
|
||||||
use chrono::{DateTime, Datelike, Local, NaiveDate, NaiveTime, Timelike};
|
use chrono::{DateTime, Datelike, Local, NaiveDate, NaiveTime, Timelike};
|
||||||
|
|
||||||
#[derive(Debug, Clone, Copy)]
|
#[derive(Debug, Clone, Copy)]
|
||||||
|
|
|
||||||
|
|
@ -160,7 +160,8 @@ impl DirEntry {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn create(name: &str, attr: Attr) -> anyhow::Result<Self> {
|
pub fn create(_name: &str, attr: Attr) -> anyhow::Result<Self> {
|
||||||
|
// TODO
|
||||||
let now: DateTime<Local> = SystemTime::now().into();
|
let now: DateTime<Local> = SystemTime::now().into();
|
||||||
|
|
||||||
let create_date = Date::from_datetime(now)?;
|
let create_date = Date::from_datetime(now)?;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue