file_ops

file_ops contains a variety of file related operations commonly used by the DAP team

nesta_ds_utils.loading_saving.file_ops.make_path_if_not_exist(path: Union[Path, str])[source]

Check if path exists, if it does not exist then create it.

Parameters:

path (Union[Path, str]) – File path.

nesta_ds_utils.loading_saving.file_ops.extractall(zip_path: Union[Path, str], out_path: Optional[Union[Path, str]] = None, delete_zip: bool = True)[source]

Takes path to zipped file and extracts it to specified output path.

Parameters:
  • zip_path (Union[Path, str]) – Path to zipped file.

  • out_path (Union[Path, str], optional) – Path where contents will be unzipped to. Defaults to None.

  • delete_zip (Boolean, optional) – Option to delete zip file after extracted. Defaults to True.