parent
7bb1d9d190
commit
70cf9514bb
1 changed files with 4 additions and 3 deletions
|
@ -33,9 +33,10 @@ pub struct FileOperation {
|
|||
|
||||
impl FileOperation {
|
||||
fn referenceable_name(&self) -> String {
|
||||
if let BasicFileOperation::WriteDirectory(_) = self.basic
|
||||
&& !self.name.ends_with('\\') && !self.name.ends_with('/') {
|
||||
return self.name.to_owned() + "/";
|
||||
if let BasicFileOperation::WriteDirectory(_) = self.basic {
|
||||
if !self.name.ends_with('\\') && !self.name.ends_with('/') {
|
||||
return self.name.to_owned() + "/";
|
||||
}
|
||||
} else {
|
||||
self.name.to_owned()
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue