Python-os-getcwd

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

Python os.getcwd()メソッド

説明

Pythonメソッド* getcwd()*は、プロセスの現在の作業ディレクトリを返します。

構文

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

cwd = os.getcwd()

パラメーター

  • NA

戻り値

このメソッドは、プロセスの現在の作業ディレクトリを返します。

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

#!/usr/bin/python

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