Python3 os 模块 Fchdir 方法 Python3 os 模块 Dup2 方法 Python3 os 模块 Fdopen 方法 Python3 os 模块 Fchdir 方法 #!/usr/bin/python3 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 ) Python3 os 模块 Dup2 方法 Python3 os 模块 Fdopen 方法