精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

Python os.open() 方法

python os.open() 方法

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

os.open() 方法用于打開一個文件,并且設(shè)置需要的打開選項,模式參數(shù)mode參數(shù)是可選的,默認為 0777。

 

語法

open()方法語法格式如下:

os.open(file, flags[, mode]);

 

參數(shù)

  • file -- 要打開的文件
  • flags -- 該參數(shù)可以是以下選項,多個使用 "|" 隔開:

    • os.o_rdonly: 以只讀的方式打開
    • os.o_wronly: 以只寫的方式打開
    • os.o_rdwr : 以讀寫的方式打開
    • os.o_nonblock: 打開時不阻塞
    • os.o_append: 以追加的方式打開
    • os.o_creat: 創(chuàng)建并打開一個新文件
    • os.o_trunc: 打開一個文件并截斷它的長度為零(必須有寫權(quán)限)
    • os.o_excl: 如果指定的文件存在,返回錯誤
    • os.o_shlock: 自動獲取共享鎖
    • os.o_exlock: 自動獲取獨立鎖
    • os.o_direct: 消除或減少緩存效果
    • os.o_fsync : 同步寫入
    • os.o_nofollow: 不追蹤軟鏈接
  • mode -- 類似 chmod()。

 

返回值

返回新打開文件的描述符。

 

實例

以下實例演示了 open() 方法的使用:

#!/usr/bin/python
# -*- coding: utf-8 -*-
import os, sys
# 打開文件
fd = os.open( "foo.txt", os.o_rdwr|os.o_creat )
# 寫入字符串
os.write(fd, "this is test")
# 關(guān)閉文件
os.close( fd )
print "關(guān)閉文件成功!!"

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

關(guān)閉文件成功!!

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

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

python 教程

相關(guān)文章