黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Python os.getcwd() 方法

python os.getcwd() 方法

python os 文件/目錄方法python os 文件/目錄方法

os.getcwd() 方法用于返回當(dāng)前工作目錄。

 

語(yǔ)法

getcwd()方法語(yǔ)法格式如下:

os.getcwd()

 

參數(shù)

  • 無(wú)

 

返回值

返回當(dāng)前進(jìn)程的工作目錄。

 

實(shí)例

以下實(shí)例演示了 getcwd() 方法的使用:

 

 

 

 

實(shí)例

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

import os, sys

# 切換到 "/var/www/html" 目錄
os.chdir("/var/www/html" )

# 打印當(dāng)前目錄
print "當(dāng)前工作目錄 : %s" % os.getcwd()

# 打開(kāi) "/tmp"
fd = os.open( "/tmp", os.o_rdonly )

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

# 打印當(dāng)前目錄
print "當(dāng)前工作目錄 : %s" % os.getcwd()

# 關(guān)閉文件
os.close( fd )

執(zhí)行以上程序輸出結(jié)果為:

當(dāng)前工作目錄 : /var/www/html
當(dāng)前工作目錄 : /tmp

python os 文件/目錄方法python os 文件/目錄方法

下一節(jié):python os.getcwdu() 方法

python 教程

相關(guān)文章