1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 15:04:50 +08:00

fix: folder handling issues

This commit is contained in:
Enrico Fasoli
2023-11-23 22:24:58 +01:00
parent 4d2437e681
commit 1964bf1e78
2 changed files with 5 additions and 2 deletions

View File

@@ -38,7 +38,10 @@ input_directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), "inp
filename_list_cache = {}
if not os.path.exists(input_directory):
os.makedirs(input_directory)
try:
os.makedirs(input_directory)
except:
print("Failed to create input directory")
def set_output_directory(output_dir):
global output_directory