(data_root_path: &Path)
| 23 | } |
| 24 | |
| 25 | fn get_public_data_directory_path(data_root_path: &Path) -> PathBuf { |
| 26 | data_root_path.join(PUBLIC_DATA_DIRECTORY_NAME) |
| 27 | } |
| 28 | |
| 29 | pub fn create_directories_if_non_existent(data_root_path: &Path) { |
| 30 | if !data_root_path.exists() { |
no outgoing calls
no test coverage detected