📜  Python的计数文件模块

📅  最后修改于: 2022-05-13 01:54:47.509000             🧑  作者: Mango

Python的计数文件模块

Count-files模块是一个用Python编写的命令行实用程序,用于获取带有扩展名的文件的计数和信息。它在提供的任何路径中检查文件和扩展名的功能也可用于检查没有或不考虑扩展名的文件。

安装

这个模块没有内置于Python。要安装此类型,请在终端中输入以下命令。

pip install count-files

参数说明

ArgDescription
-hPrint all the help and exit.
-vShow version number and exit.
-stList of supported file types for preview.
-aAlso, show hidden files.
-nrDon’t recurse for subdirectories.
-cTreat all files case-sensitively.
-nfTurns off the program’s operating indicator
-hcStart interactive help on the topic.
-t EXTENSION Gets a total number of files in the directory.
-alphaSorts the result table alphabetically.
-fe FILE_EXTENSION Search files of a particular extension.
-pAlso, display a preview of the text. Only available on text message.
-fsShow sizes of each file found 
-ps PREVIEW_SIZE Entering the size of preview required.
pathEnter the path to check files in.

示例1:打印当前目录的计数和文件



示例 2:获取所有文件的计数,而不考虑扩展名,包括隐藏文件(使用 ..),获取非指定扩展名的总数(使用 .)