Package concurrent_tree_crawler :: Package common :: Module file_helper
[hide private]
[frames] | no frames]

Source Code for Module concurrent_tree_crawler.common.file_helper

1  import os 
2   
3 -def lenient_makedir(dir_path):
4 """Create given directory path if it doesn't already exist""" 5 if not os.access(dir_path, os.F_OK): 6 os.makedirs(dir_path)
7