📜  用于文件计数的 python 监视器目录 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:31.590000             🧑  作者: Mango

代码示例1
import os.path
path = os.getenv('HOME') + '/python'
num_files = len([f for f in os.listdir(path)if os.path.isfile(os.path.join(path, f))])