Detect non-existent files as non-readonly (#7875)
This commit is contained in:
parent
cefc33e3df
commit
f01ca107fb
1 changed files with 6 additions and 1 deletions
|
@ -965,7 +965,11 @@ impl Document {
|
|||
// Allows setting the flag for files the user cannot modify, like root files
|
||||
self.readonly = match &self.path {
|
||||
None => false,
|
||||
Some(p) => access(p, Access::WRITE_OK).is_err(),
|
||||
Some(p) => match access(p, Access::WRITE_OK) {
|
||||
Ok(_) => false,
|
||||
Err(err) if err.kind() == std::io::ErrorKind::NotFound => false,
|
||||
Err(_) => true,
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -979,6 +983,7 @@ impl Document {
|
|||
self.readonly = match &self.path {
|
||||
None => false,
|
||||
Some(p) => match std::fs::metadata(p) {
|
||||
Err(err) if err.kind() == std::io::ErrorKind::NotFound => false,
|
||||
Err(_) => false,
|
||||
Ok(metadata) => metadata.permissions().readonly(),
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue