如何检查某个文件夹中是否存在任何文件?我知道如何检查A文件。如下
a = os.path.exists("text.txt")
if a:
print("file is there")
else:
print("not found")
提前致谢
答案 0 :(得分:3)
使用.dataTables_scrollBody{
overflow:none
}
<强>实施例强>
os.listdir
答案 1 :(得分:2)
folder = os.listdir("/home/yourname/yourdir")
if len(folder)>0:
print "the folder is not empty"
答案 2 :(得分:2)
将列出文件夹folder
中的文件
脚本从main
folder
files
...
main.py
将仅列出文件,而不是.
和..
import os
dir = os.path.dirname(__file__) or '.'
dir_path = os.path.join(dir, '../folder/')
onlyfiles = [f for f in os.listdir(dir_path) if os.path.isfile(os.path.join(dir_path, f))]