#-*- coding: cp936 -*-
#python 27
#xiaodeng
#查詢特定字尾的檔案
#方法一:
importos#
os.listdir,獲取指定目錄下的內容
#返回乙個list
#該目錄下所有的內容都將被返回
import
osdef filetype(filename,*args):
for types in
args:
if filename.endswith(types):return
filename
if__name__ == '
__main__':
listfile = os.listdir('
c:\python
')#對應要查詢的檔案目錄
houzhui=('
.txt
','.py
','.html
')#定義需要查詢的檔案字尾,請帶上點號,可定義乙個字尾,也可以定義多個
for filename in
listfile:
if filetype(filename,houzhui)!=none:
filetype(filename,houzhui)
#-*- coding: cp936 -*-
#python 27
#xiaodeng
#查詢特定字尾的檔案
#方法二
importos#
os.listdir,獲取指定目錄下的內容
#返回乙個list
#該目錄下所有的內容都將被返回
listfile = os.listdir('
c:\python')
for filename in
listfile:
filehtml =filename.endswith('
.html')
filetxt=filename.endswith('
.txt')
if filehtml or
filetxt:
print filename
查詢特定字尾的檔案
coding cp936 python 27 xiaodeng 查詢特定字尾的檔案 方法一 importos os.listdir,獲取指定目錄下的內容 返回乙個list 該目錄下所有的內容都將被返回 import osdef filetype filename,args for types in ...
刪除特定字尾特定範圍大小檔案
usr bin env python3 coding utf 8 import os,time def sizeremove path,a 0,c 0,last abcdef a,c kb 之間的檔案都被刪除 oldpath path global total size命名為全域性變數 path o...
python找出資料夾下特定字尾檔案
實現功能 找出資料夾下特定字尾檔案 import os defscreen 函式功能為 篩選出資料夾下所有字尾名為.txt的檔案 path 此處填寫要篩選的資料夾位址名稱 資料夾位址 txt list 建立乙個空列表用於存放資料夾下所有字尾為.txt的檔名稱 file list os.listdir...