diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-04-16 13:46:46 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-04-16 13:46:46 +0200 |
| commit | ea5297364f8a1b2c4e684140024b60a83b087b50 (patch) | |
| tree | 788cabbe2d660ec004009017eb793426d205cf8f /src/file_handler/file_strategies/file.rs | |
| parent | 4fd89b808cabc8afb0d75b9700be1da96989c4b7 (diff) | |
Add static file copying
Diffstat (limited to 'src/file_handler/file_strategies/file.rs')
| -rw-r--r-- | src/file_handler/file_strategies/file.rs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/file_handler/file_strategies/file.rs b/src/file_handler/file_strategies/file.rs index b1de596..42b87d5 100644 --- a/src/file_handler/file_strategies/file.rs +++ b/src/file_handler/file_strategies/file.rs @@ -1,6 +1,7 @@ pub struct Strategy {} use std::path::PathBuf; +use std::fs::{copy, create_dir_all}; use crate::file_handler::{File, FileType, FileHandlerStrategy}; @@ -20,7 +21,11 @@ impl FileHandlerStrategy for Strategy { } } - fn handle(&self, file: &File) { - println!("Should copy {}", file.path.display()) + fn handle(&self, source: &PathBuf, destination: &PathBuf, file: &File) { + let relative_path = file.path.strip_prefix(&source).unwrap(); + let complete_destination = destination.join(relative_path); + let destination_parent = complete_destination.parent().unwrap(); + create_dir_all(destination_parent).unwrap(); + copy(&file.path, &complete_destination).unwrap(); } } |