シェル コマンド 'cd' を使用すると、ユーザーは現在の作業ディレクトリに移動して変更できます。 Python では、os.chdir() 関数は、作業ディレクトリを変更するのと同等の機能を果たします。
import os os.chdir(path)
次の Python コードは、使用法を示しています。 os.chdir() の:
import os # Change the current working directory to 'new_dir' os.chdir('new_dir') # Print the current working directory print(os.getcwd())
Python 3.11 以降、chdir() コンテキスト マネージャーを利用して、完了時に元の作業ディレクトリに確実に戻ることができます:
from contextlib import chdir with chdir('new_dir'): # Perform operations within the 'new_dir' directory # Execution continues in the original working directory
以上がPython の `os.chdir()` 関数はシェルの `cd` コマンドをどのように模倣しますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。