Python的计数文件模块
Count-files模块是一个用Python编写的命令行实用程序,用于获取带有扩展名的文件的计数和信息。它在提供的任何路径中检查文件和扩展名的功能也可用于检查没有或不考虑扩展名的文件。
安装
这个模块没有内置于Python。要安装此类型,请在终端中输入以下命令。
pip install count-files
参数说明
count-files [-h] [-v] [-st] [-a] [-nr] [-c] [-nf] [-hc] [-t EXTENSION] [-alpha] [-fe FILE_EXTENSION] [-p] [-ps PREVIEW_SIZE] [-fs] [path]
Arg | Description |
---|---|
-h | Print all the help and exit. |
-v | Show version number and exit. |
-st | List of supported file types for preview. |
-a | Also, show hidden files. |
-nr | Don’t recurse for subdirectories. |
-c | Treat all files case-sensitively. |
-nf | Turns off the program’s operating indicator |
-hc | Start interactive help on the topic. |
-t EXTENSION | Gets a total number of files in the directory. |
-alpha | Sorts the result table alphabetically. |
-fe FILE_EXTENSION | Search files of a particular extension. |
-p | Also, display a preview of the text. Only available on text message. |
-fs | Show sizes of each file found |
-ps PREVIEW_SIZE | Entering the size of preview required. |
path | Enter the path to check files in. |
示例1:打印当前目录的计数和文件
示例 2:获取所有文件的计数,而不考虑扩展名,包括隐藏文件(使用 ..),获取非指定扩展名的总数(使用 .)