File tree 2 files changed +22
-6
lines changed
2 files changed +22
-6
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ use std::path::PathBuf;
19
19
use avm_server:: DataStore ;
20
20
use thiserror:: Error ;
21
21
22
- use fs_utils:: { create_dir, remove_dir } ;
22
+ use fs_utils:: { create_dir, remove_file } ;
23
23
use particle_execution:: { ParticleVault , VaultError } ;
24
24
use DataStoreError :: { CleanupData , CreateDataStore , StoreData } ;
25
25
@@ -74,7 +74,7 @@ impl DataStore<DataStoreError> for ParticleDataStore {
74
74
}
75
75
76
76
fn cleanup_data ( & mut self , key : & str ) -> Result < ( ) > {
77
- remove_dir ( & self . data_file ( key) ) . map_err ( CleanupData ) ?;
77
+ remove_file ( & self . data_file ( key) ) . map_err ( CleanupData ) ?;
78
78
self . vault . cleanup ( key) ?;
79
79
80
80
Ok ( ( ) )
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ use rand::Rng;
31
31
use std:: fmt:: Debug ;
32
32
use std:: fs;
33
33
use std:: fs:: Permissions ;
34
+ use std:: io:: ErrorKind ;
34
35
use std:: path:: { Path , PathBuf } ;
35
36
36
37
pub fn to_abs_path ( path : PathBuf ) -> PathBuf {
@@ -106,12 +107,27 @@ where
106
107
}
107
108
108
109
pub fn remove_dir ( dir : & Path ) -> Result < ( ) , std:: io:: Error > {
109
- std:: fs:: remove_dir_all ( & dir) . map_err ( |err| {
110
- std:: io:: Error :: new (
110
+ match std:: fs:: remove_dir_all ( dir) {
111
+ Ok ( _) => Ok ( ( ) ) ,
112
+ // ignore NotFound
113
+ Err ( err) if err. kind ( ) == ErrorKind :: NotFound => Ok ( ( ) ) ,
114
+ Err ( err) => Err ( std:: io:: Error :: new (
111
115
err. kind ( ) ,
112
116
format ! ( "error removing directory {:?}: {:?}" , dir, err) ,
113
- )
114
- } )
117
+ ) ) ,
118
+ }
119
+ }
120
+
121
+ pub fn remove_file ( file : & Path ) -> Result < ( ) , std:: io:: Error > {
122
+ match std:: fs:: remove_file ( file) {
123
+ Ok ( _) => Ok ( ( ) ) ,
124
+ // ignore NotFound
125
+ Err ( err) if err. kind ( ) == ErrorKind :: NotFound => Ok ( ( ) ) ,
126
+ Err ( err) => Err ( std:: io:: Error :: new (
127
+ err. kind ( ) ,
128
+ format ! ( "error removing file {:?}: {:?}" , file, err) ,
129
+ ) ) ,
130
+ }
115
131
}
116
132
117
133
pub fn file_stem ( path : impl AsRef < Path > ) -> eyre:: Result < String > {
You can’t perform that action at this time.
0 commit comments