문제점 및 증상 폴더 생성을 위하여 다음과 같이 코드를 작성하였습니다. img_path = current_app.root_path + '/static/img/receipts/' + datetime.datetime.now().strftime('%Y/%m/') if not os.path.exists(img_path): os.mkdir(img_path) 폴더를 생성하는 과정에 다음과 같은 오류가 발생하였습니다. File "D:\Dev\Web\accounting\server\app\controllers\api\receipt_file.py", line 28, in post os.mkdir(img_path) FileNotFoundError: [WinError 3] 지정된 경로를 찾을 수 없습니다: 'D:\\Dev\..