Latest web development tutorials

Python os.getcwd () -Methode

Python-Datei (File) Methode Python OS Datei / Verzeichnis - Methoden


Umriss

os.getcwd () Methode gibt das aktuelle Arbeitsverzeichnis.

Grammatik

getcwd () -Methode Syntax lautet wie folgt:

os.getcwd()

Parameter

  • keine

Rückgabewert

Gibt das Arbeitsverzeichnis des aktuellen Prozesses.

Beispiele

Das folgende Beispiel zeigt getcwd () Art der Nutzung:

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

Das obige Programm Ausgabe lautet:

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

Python-Datei (File) Methode Python OS Datei / Verzeichnis - Methoden