You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The error is the result of trying to create a new directory at file path that doesn't exist yet.
Line 850 in DupFileManager.py should be: os.makedirs(htmlReportNameFolder, exist_ok=True) instead of os.mkdir().
The error is the result of trying to create a new directory at file path that doesn't exist yet.
Line 850 in DupFileManager.py should be:
os.makedirs(htmlReportNameFolder, exist_ok=True)instead ofos.mkdir().