|
|
@ -79,6 +79,9 @@ def listCatalogues(): # 列出缓存目录下的条目
|
|
|
|
if not os.path.exists(path):
|
|
|
|
if not os.path.exists(path):
|
|
|
|
print("当前目录[{}]下没有数据!".format(path))
|
|
|
|
print("当前目录[{}]下没有数据!".format(path))
|
|
|
|
return False, None, None
|
|
|
|
return False, None, None
|
|
|
|
|
|
|
|
if len(os.listdir(path)) is 0:
|
|
|
|
|
|
|
|
print("当前目录[{}]下没有数据!".format(path))
|
|
|
|
|
|
|
|
return False, None, None
|
|
|
|
dirList = os.listdir(path)
|
|
|
|
dirList = os.listdir(path)
|
|
|
|
fileList = []
|
|
|
|
fileList = []
|
|
|
|
for filename in dirList:
|
|
|
|
for filename in dirList:
|
|
|
|