Python에서 파일을 이동하려면 어떻게 해야 하나요? Python에서와 동등한 기능을 하려면 어떻게 해야 합니까? mv "path/to/current/file.foo" "path/to/new/destination/for/file.foo" os.rename(), , 또는 모두 같은 구문을 사용합니다. import os import shutil os.rename("path/to/current/file.foo", "path/to/new/destination/for/file.foo") os.replace("path/to/current/file.foo", "path/to/new/destination/for/file.foo") shutil.move("path/to/current/file.foo", "path/to..