This commit is contained in:
guanjihuan 2024-02-28 09:47:22 +08:00
parent 3143694c7a
commit 490aecf6b0
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
[metadata] [metadata]
# replace with your username: # replace with your username:
name = guan name = guan
version = 0.1.86 version = 0.1.87
author = guanjihuan author = guanjihuan
author_email = guanjihuan@163.com author_email = guanjihuan@163.com
description = An open source python package description = An open source python package

View File

@ -1,6 +1,6 @@
Metadata-Version: 2.1 Metadata-Version: 2.1
Name: guan Name: guan
Version: 0.1.86 Version: 0.1.87
Summary: An open source python package Summary: An open source python package
Home-page: https://py.guanjihuan.com Home-page: https://py.guanjihuan.com
Author: guanjihuan Author: guanjihuan

View File

@ -89,7 +89,7 @@ def get_all_filenames_in_directory(directory='./', file_format=None, show_root_p
if include_subdirectory != 1: if include_subdirectory != 1:
break break
if sort == 1: if sort == 1:
sorted(file_list) file_list = sorted(file_list)
return file_list return file_list
# 获取文件夹中某种文本类型的文件以及读取所有内容 # 获取文件夹中某种文本类型的文件以及读取所有内容