파이썬에서 임시 디렉터리를 만들려면 어떻게 해야 합니까? 파이썬에서 임시 디렉터리를 만들고 경로를 얻으려면 어떻게 해야 합니까?Python 3에서는 모듈에서 사용할 수 있습니다. 예제에서: import tempfile with tempfile.TemporaryDirectory() as tmpdirname: print('created temporary directory', tmpdirname) # directory and contents have been removed 디렉토리가 제거되는 시기를 수동으로 제어하려면 다음 예와 같이 컨텍스트 관리자를 사용하지 마십시오. import tempfile temp_dir = tempfile.TemporaryDirectory() print(temp_dir.name) ..