Skip to content

check_directory_exists

Source code in tinybig/util/utility.py
def check_directory_exists(complete_file_path):
    directory_path = os.path.dirname(complete_file_path)
    return os.path.exists(directory_path)