Latest web development tutorials

Python os.getcwd () method

Python File (File) method Python OS file / directory methods


Outline

os.getcwd () method returns the current working directory.

grammar

getcwd () method syntax is as follows:

os.getcwd()

parameter

  • no

return value

Returns the working directory of the current process.

Examples

The following example demonstrates getcwd () method of use:

#!/usr/bin/python
# -*- coding: UTF-8 -*-

import os, sys

# 切换到 "/var/www/html" 目录
os.chdir("/var/www/html" )

# 打印当前目录
print "当前工作目录 : %s" % os.getcwd()

# 打开 "/tmp"
fd = os.open( "/tmp", os.O_RDONLY )

# 使用 os.fchdir() 方法修改目录
os.fchdir(fd)

# 打印当前目录
print "当前工作目录 : %s" % os.getcwd()

# 关闭文件
os.close( fd )

The above program output is:

当前工作目录 : /var/www/html
当前工作目录 : /tmp

Python File (File) method Python OS file / directory methods