Skip to content

Commit

Permalink
Merge pull request #56 from duolabmeng6/patch
Browse files Browse the repository at this point in the history
修复
  • Loading branch information
duolabmeng6 authored Jun 27, 2024
2 parents 0aaa2eb + b6c25ba commit 7368199
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyefun/核心支持库/磁盘操作.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def 文件_递归获取所有文件(路径='.'):
"""获取文件夹下所有文件绝对路径 排查文件夹"""
filess = []
listFiles = os.listdir(路径)
for i in range(0, len(路径)):
for i in range(0, len(listFiles)):
path = os.path.join(路径, listFiles[i])
if os.path.isdir(path):
filess.extend(文件_递归获取所有文件(path))
Expand Down

0 comments on commit 7368199

Please sign in to comment.