Python3-os-fchdir

提供:Dev Guides
移動先:案内検索

Python 3-os.fchdir()メソッド

説明

メソッド* fchdir()は、現在の作業ディレクトリをファイル記述子 *fd で表されるディレクトリに変更します。 記述子は、開いているファイルではなく、開いているディレクトリを参照する必要があります。

構文

以下は* fchdir()*メソッドの構文です-

os.fchdir(fd)

パラメーター

*fd* -これはディレクトリ記述子です。

戻り値

このメソッドは値を返しません。

次の例は、fchdir()メソッドの使用法を示しています。

#!/usr/bin/python3
import os, sys

# First go to the "/var/www/html" directory
os.chdir("/var/www/html" )

# Print current working directory
print ("Current working dir : %s" % os.getcwd())

# Now open a directory "/tmp"
fd = os.open( "/tmp", os.O_RDONLY )

# Use os.fchdir() method to change the dir
os.fchdir(fd)

# Print current working directory
print ("Current working dir : %s" % os.getcwd())

# Close opened directory.
os.close( fd )

結果

上記のプログラムを実行すると、次の結果が生成されます-

Current working dir :/var/www/html
Current working dir :/tmp