如何用python检查某个文件夹中是否存在任何文件?

时间:2018-04-23 12:52:15

标签: python

如何检查某个文件夹中是否存在任何文件?我知道如何检查A文件。如下

a = os.path.exists("text.txt")
if a:
    print("file is there")
else:
    print("not found")

提前致谢

3 个答案:

答案 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))]