檔案操作之讀取檔案

2021-10-05 03:15:58 字數 882 閱讀 5988

#檔案操作

'''檔案上傳:

儲存log

系統函式:

open(file,mode,buffing,encoding)

讀: open(path/filename,'rt')------>返回值: stream(管道)

container=stream.read()------>讀取管道中的內容

注意:如果傳遞的path/filename有誤,則會報錯:filenotfounderror

如果是則不能使用預設的讀取方式,mode='rb'

總結:read() 讀取所有檔案

readline() 每次讀取一行的內容

readlines() 讀取所有的行儲存到列表中

readable() 判斷是否是可讀的

'''stream=

open

(r'c:\users\administrator\desktop\p1\aa.txt'

)# container=stream.read()

# print(container)

# result=stream.readable()

# print(result)

# while true:

# line=stream.readline()

# print(line)

# if not line:

# break

lines=stream.readlines(

)#儲存在列表中

print

(lines)

for i in lines:

print

(i)

檔案操作之plist檔案讀取

有時開發需要把一些資訊用plist儲存在本地 存寫 獲取應用沙盒的根目錄 nsstring homepath nshomedirectory 拼接路徑 nsstring docpath homepath documents 第二種方法 docpath nssearchpathfordirectori...

讀取檔案操作

獲取路徑 nsstring path nsbundle mainbundle pathforresource file3 oftype dmh nslog path path 轉換 unsigned int lenofstrvalue path length char szvalue lenofst...

python 檔案遍歷 檔案讀取 檔案操作

一 檔案遍歷 import os filedir d os.sep data2 for root,dirs,files in os.walk filedir for dir in dirs print os.path.join root,dir for file in files print os....