GCDWebUploader: disable some feature

This commit is contained in:
2026-06-08 15:00:38 +07:00
parent f90cd113ba
commit ef4b622b13
3 changed files with 18 additions and 18 deletions

View File

@ -420,15 +420,15 @@ NS_ASSUME_NONNULL_END
}
- (BOOL)shouldMoveItemFromPath:(NSString*)fromPath toPath:(NSString*)toPath {
return YES;
return NO;
}
- (BOOL)shouldDeleteItemAtPath:(NSString*)path {
return YES;
return NO;
}
- (BOOL)shouldCreateDirectoryAtPath:(NSString*)path {
return YES;
return NO;
}
@end