📜  python 列出当前目录中的文件 - Python 代码示例

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

代码示例6
import os
#this command will store all .txt files in same directories
ALL_FILES_IN_DIR = [ELEM for ELEM in os.listdir() if "txt" in ELEM]

#ALL DIRETORIES 
ALL_DIR = [ELEM for ELEM in os.listdir() if "." not in ELEM]