Python3-os-getcwdu

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

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

説明

メソッド* getcwdu()*は、現在の作業ディレクトリを表すUnicodeオブジェクトを返します。

構文

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

os.getcwdu()

パラメーター

NA

戻り値

このメソッドは、現在の作業ディレクトリを表すUnicodeオブジェクトを返します。

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

#!/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.getcwdu())

# 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.getcwdu())

# Close opened directory.
os.close( fd )

結果

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

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