Python os.dup() 方法 Python os.closerange() 方法 Python os.fchdir() 方法 Python os.dup() 方法 #!/usr/bin/python import os, sys # Open a file fd = os.open( "foo.txt", os.O_RDWR|os.O_CREAT ) # Get one duplicate file descriptor d_fd = os.dup( fd ) # Write one string using duplicate fd os.write(d_fd, "This is test") # Close a single opened file os.closerange( fd, d_fd) print "Closed all the files successfully!!" Python os.closerange() 方法 Python os.fchdir() 方法