您好,登錄后才能下訂單哦!
# 通編碼讀取文件內(nèi)容
def read_lines_from_file(file_path, coding="utf-8"):
line_content = []
if os.path.isfile(file_path):
try:
with open(file_path, encoding=coding) as fp:
line_content = fp.readlines()
return line_content
except Exception as e:
# print(e)
try:
with open(file_path, encoding="gbk") as fp:
line_content = fp.readlines()
return line_content
except Exception as e:
print(e)
return []
elif os.path.isdir(file_path):
print("%s is a dir! can not read content directly!" % file_path)
return []
else:
print("%s file path does not exist!" % file_path)
return []
import os.path
def read_lines_from_file(file_path,coding="utf-8"):
'''此函數(shù)用于讀取某個文件的所有行'''
if os.path.isfile(file_path):
#判斷file_path參數(shù)是文件的情況
try:
#用utf-8編碼去讀取文件的所有行
with open(file_path,encoding=coding) as fp:
line_content = fp.readlines()
return line_content
except Exception as e:
#print(e)
#用utf-8編碼讀取出異常后,用gbk去讀取文件的所有行
try:
with open(file_path,encoding="gbk") as fp:
line_content = fp.readlines()
return line_content
except Exception as e:
print(e)
return []
elif os.path.isdir(file_path):
#判斷file_path參數(shù)是目錄的情況
print("%s is a dir! can not read content directly!" %file_path)
return []
else:
#判斷file_path參數(shù)即不是目錄,也不是文件的情況
print("%s file path does not exist!" %file_path)
return []
#print(read_lines_from_file("e:\\筆記1.txt"))
#print(read_lines_from_file("e:\\test1111"))
def count_line_num(path,match_letters):
"""統(tǒng)計一個目錄的包含某字符串的行數(shù)
path參數(shù)可以是目錄路徑也可以是文件路徑"""
line_nums = 0
if not os.path.exists(path):
#判斷路徑在不在,不在的話返回0
print("%s does not exists!" %path)
return line_nums
elif os.path.isfile(path):
#當路徑是文件的時候,用封裝的read_lines_from_file
#讀取所有行,然后在做計數(shù)
if ".txt" not in path:
return line_nums
for line in read_lines_from_file(path):
if match_letters in line:
line_nums+=1
return line_nums
elif os.path.isdir(path):
#當路徑是目錄的時候,用封裝的read_lines_from_file
#讀取所有行,然后在做計數(shù)
for root,dirs,files in os.walk(path):
for file in files:
if ".txt" not in file:
continue
file_path = os.path.join(root,file)
for line in read_lines_from_file(file_path):
if match_letters in line:
line_nums+=1
return line_nums
def get_specific_lines(path,match_letters):
"""統(tǒng)計一個目錄的包含某字符串的所有行
path參數(shù)可以是目錄路徑也可以是文件路徑"""
specific_lines =[]
if not os.path.exists(path):
print("%s does not exists!" %path)
return line_nums
elif os.path.isfile(path):
if ".txt" not in path:
return line_nums
for line in read_lines_from_file(path):
if match_letters in line:
specific_lines.append(line)
return line_nums
elif os.path.isdir(path):
for root,dirs,files in os.walk(path):
for file in files:
if ".txt" not in file:
continue
file_path = os.path.join(root,file)
for line in read_lines_from_file(file_path):
if match_letters in line:
specific_lines.append(line)
return specific_lines
#print(count_line_num("e:\\a.txt","ab"))
print(get_specific_lines("e:\\pic","ab"))
with open(r"e:\result.txt",'w') as fp:
fp.writelines(get_specific_lines("e:\\pic","ab"))
import os.path
class Data:
def __init__(self,path):
self.path =path
@staticmethod
def read_lines_from_file(file_path, coding="utf-8"):
'''此函數(shù)用于讀取某個文件的所有行'''
if os.path.isfile(file_path):
# 判斷file_path參數(shù)是文件的情況
try:
# 用utf-8編碼去讀取文件的所有行
with open(file_path, encoding=coding) as fp:
line_content = fp.readlines()
return line_content
except Exception as e:
# print(e)
# 用utf-8編碼讀取出異常后,用gbk去讀取文件的所有行
try:
with open(file_path, encoding="gbk") as fp:
line_content = fp.readlines()
return line_content
except Exception as e:
print(e)
return []
elif os.path.isdir(file_path):
# 判斷file_path參數(shù)是目錄的情況
print("%s is a dir! can not read content directly!" % file_path)
return []
else:
# 判斷file_path參數(shù)即不是目錄,也不是文件的情況
print("%s file path does not exist!" % file_path)
return []
@staticmethod
def read_lines_from_file(file_path, coding="utf-8"):
'''此函數(shù)用于讀取某個文件的所有行'''
if os.path.isfile(file_path):
# 判斷file_path參數(shù)是文件的情況
try:
# 用utf-8編碼去讀取文件的所有行
with open(file_path, encoding=coding) as fp:
line_content = fp.readlines()
return line_content
except Exception as e:
# print(e)
# 用utf-8編碼讀取出異常后,用gbk去讀取文件的所有行
try:
with open(file_path, encoding="gbk") as fp:
line_content = fp.readlines()
return line_content
except Exception as e:
print(e)
return []
elif os.path.isdir(file_path):
# 判斷file_path參數(shù)是目錄的情況
print("%s is a dir! can not read content directly!" % file_path)
return []
else:
# 判斷file_path參數(shù)即不是目錄,也不是文件的情況
print("%s file path does not exist!" % file_path)
return []
@staticmethod
def count_line_num(path, match_letters):
"""統(tǒng)計一個目錄的包含某字符串的行數(shù)
path參數(shù)可以是目錄路徑也可以是文件路徑"""
line_nums = 0
if not os.path.exists(path):
# 判斷路徑在不在,不在的話返回0
print("%s does not exists!" % path)
return line_nums
elif os.path.isfile(path):
# 當路徑是文件的時候,用封裝的read_lines_from_file
# 讀取所有行,然后在做計數(shù)
if ".txt" not in path:
return line_nums
for line in Data.read_lines_from_file(path):
if match_letters in line:
line_nums += 1
return line_nums
elif os.path.isdir(path):
# 當路徑是目錄的時候,用封裝的read_lines_from_file
# 讀取所有行,然后在做計數(shù)
for root, dirs, files in os.walk(path):
for file in files:
if ".txt" not in file:
continue
file_path = os.path.join(root, file)
for line in read_lines_from_file(file_path):
if match_letters in line:
line_nums += 1
return line_nums
@staticmethod
def get_specific_lines(path, match_letters):
"""統(tǒng)計一個目錄的包含某字符串的所有行
path參數(shù)可以是目錄路徑也可以是文件路徑"""
specific_lines = []
if not os.path.exists(path):
print("%s does not exists!" % path)
return specific_lines
elif os.path.isfile(path):
if ".txt" not in path:
return []
for line in Data.read_lines_from_file(path):
if match_letters in line:
specific_lines.append(line)
return specific_lines
elif os.path.isdir(path):
for root, dirs, files in os.walk(path):
for file in files:
if ".txt" not in file:
continue
file_path = os.path.join(root, file)
for line in read_lines_from_file(file_path):
if match_letters in line:
specific_lines.append(line)
return specific_lines
print(Data.read_lines_from_file("e:\\a.txt"))
print(Data.count_line_num("e:\\a.txt","ab"))
print(Data.get_specific_lines("e:\\a.txt","ab"))
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。