Latest web development tutorials

méthode python3 de os.getcwdu ()

Python3 OS méthodes fichier / répertoire Python3 OS méthodes fichier / répertoire


contour

méthode os.getcwdu () renvoie les objets Unicode répertoire de travail courant.

Unix, Windows disponible.

grammaire

getcwdu () Syntaxe de la méthode est la suivante:

os.getcwdu()

Paramètres

  • aucun

Valeur de retour

Renvoie les objets Unicode répertoire de travail courant.

Exemples

L'exemple suivant montre getcwdu () mode d'emploi:

#!/usr/bin/python3

import os, sys

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

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

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

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

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

# 关闭文件
os.close( fd )

La sortie du programme ci-dessus est:

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

Python3 OS méthodes fichier / répertoire Python3 OS méthodes fichier / répertoire