casinotools.utilities.path module¶
Utility methods related to path operation used by casinotools.
- casinotools.utilities.path.create_path(path)[source]¶
Create a path from the input string if it does not exist.
Does not try to distinct between file and directory in the input string. path = “dir1/filename.ext” => “dir1/filename.ext/” where the new directory “filename.ext” is created.
@param[in] path input string.
@return the path with the path separator at the end.