File Path Utils
Module containing file path utilities for WriteStrategy to use.
create_write_file_path(dirpath, file_path, write_extension, postfix='')
Create the file name for the output file.
Takes the original file path, changes the directory to dirpath and changes
the extension to write_extension.
Parameters:
-
dirpath(Path) –The output directory to write file to.
-
file_path(Path) –The original file path.
-
write_extension(str) –The extension that output files should have.
-
postfix(str, default:"") –Appends to filename before extension.
Returns:
-
Path–The output file path.