溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

根據(jù)文件屬性查找文件

發(fā)布時(shí)間:2020-06-28 08:00:47 來(lái)源:網(wǎng)絡(luò) 閱讀:896 作者:cooperfang 欄目:編程語(yǔ)言

-文件的屬性

1.os.path.getsize

2.os.path.isfile()

3.os.stat

-文件后綴名

1. split

2.[-3:]

3. re

4. endswith

import os
os.chdir(r'D:\全棧\第二模塊第二次作業(yè)')
os.getcwd()
'D:\\全棧\\第二模塊第二次作業(yè)'
filename1 = r'D:\全棧\第二模塊第二次作業(yè)\bwl.py'
os.path.getsize(filename1)
4697
os.path.isfile('a')
False
os.path.isfile('bwl.py')
True
os.stat('bwl.py')
os.stat_result(st_mode=33206, st_ino=286260051314738315, st_dev=3490529842, st_nlink=1, st_uid=0, st_gid=0, st_size=4697, st_atime=1530543099, st_mtime=1530707793, st_ctime=1530538739)
filename1[-3:]
'.py'
os.path.splitext(filename1)
('D:\\全棧\\第二模塊第二次作業(yè)\\bwl', '.py')
filename1.endswith('py')
True
#######################
os.listdir()
['0202zhaofangtao.zip',
 '21dian.py',
 'beiwanglu.py',
 'beiwanglu1.py',
 'bwl.py',
 'color_me.py',
 'transfer.py',
 'transfer2.py',
 'transfer3.py',
 'transfer4.py',
 'zz.py',
 '新建 Microsoft Excel 工作表.xlsx',
 '新建文件夾',
 '新建文本文檔 - 副本 (2).pdf',
 '新建文本文檔 - 副本 (3).doc',
 '新建文本文檔 - 副本 (4).html',
 '新建文本文檔 - 副本.xlsx',
 '新建文本文檔.txt']
filename2 = r'D:\全棧\第二模塊第二次作業(yè)\zz.py'
import re
re_filename = re.compile('(.*pdf$)|(.*doc$)|(.*html$)|(.*py$)')
re_filename.match(filename2).group()  # 感覺(jué)雞肋
'D:\\全棧\\第二模塊第二次作業(yè)\\zz.py'
os.walk('.')
<generator object walk at 0x000002721AC09E60>
os.walk?
Signature: os.walk(top, topdown=True, onerror=None, followlinks=False)
Docstring:
Directory tree generator.

For each directory in the directory tree rooted at top (including top
itself, but excluding '.' and '..'), yields a 3-tuple

    dirpath, dirnames, filenames
  File "<ipython-input-31-0b1889725fcb>", line 3
    Docstring:
              ^
SyntaxError: invalid syntax
for root, dirs, files in os.walk('.'):

    print(root)  # 根目錄 .
    print()
    print(dirs)  # 根目錄下的子目錄 如:新建文件夾
    print()
    print(files)  # 目錄中的文件
    print()
#     print(root, dirs, files)
.

['新建文件夾']

['0202zhaofangtao.zip', '21dian.py', 'beiwanglu.py', 'beiwanglu1.py', 'bwl.py', 'color_me.py', 'transfer.py', 'transfer2.py', 'transfer3.py', 'transfer4.py', 'zz.py', '新建 Microsoft Excel 工作表.xlsx', '新建文本文檔 - 副本 (2).pdf', '新建文本文檔 - 副本 (3).doc', '新建文本文檔 - 副本 (4).html', '新建文本文檔 - 副本.xlsx', '新建文本文檔.txt']

.\新建文件夾

[]

['bwl1.py', 'db.pkl', 'transfer5.py']
# os.walk 便利目錄,找到對(duì)應(yīng)后綴名,并大小小于1M的文件
for root, dirs, files in os.walk('.'):
#     print(root, dirs, files)
    for name in files:
        file = os.path.join(root, name)  # 拼接目錄,當(dāng)前目錄下的文件
        if re_filename.match(file) and os.path.getsize(file) < 1024 * 1024 * 1024 * 1024:
            print(name)
21dian.py
beiwanglu.py
beiwanglu1.py
bwl.py
color_me.py
transfer.py
transfer2.py
transfer3.py
transfer4.py
zz.py
新建文本文檔 - 副本 (2).pdf
新建文本文檔 - 副本 (3).doc
新建文本文檔 - 副本 (4).html
bwl1.py
transfer5.py
向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI