修复bug 添加对子文件夹读取支持

This commit is contained in:
岛风 2024-06-27 00:27:16 +08:00
parent 196eafdbe7
commit 3a04b4a504

View File

@ -8,21 +8,19 @@ def natural_sort_key(s):
"""为了自然排序的辅助函数,将字符串中的数字部分转换成整数""" """为了自然排序的辅助函数,将字符串中的数字部分转换成整数"""
return [int(text) if text.isdigit() else text.lower() for text in re.split('([0-9]+)', s)] return [int(text) if text.isdigit() else text.lower() for text in re.split('([0-9]+)', s)]
def generate_urls(file_names, base_url, sub_directory): def generate_urls(file_paths, base_url, sub_directory):
"""根据文件、基础URL和子目录生成URL链接""" """根据文件路径、基础URL和子目录生成URL链接"""
urls = [] urls = []
# 确保base_url和sub_directory以斜线结尾如果sub_directory不为空
if not base_url.endswith('/'): if not base_url.endswith('/'):
base_url += '/' base_url += '/'
if sub_directory and not sub_directory.endswith('/'): if sub_directory and not sub_directory.endswith('/'):
sub_directory += '/' sub_directory += '/'
current_timestamp = int(time.time()) # 获取当前时间的时间戳,转换为整数 current_timestamp = int(time.time())
for name in sorted(file_names, key=natural_sort_key): # 使用自定义排序 for path in sorted(file_paths, key=natural_sort_key):
file_path = os.path.join('.', name) file_size_bytes = os.path.getsize(path)
file_size_bytes = os.path.getsize(file_path) # 获取文件大小(字节),为整数 relative_path = os.path.relpath(path, start='.')
# 对文件名进行URL编码 encoded_path = urllib.parse.quote(relative_path)
encoded_name = urllib.parse.quote(name) url = f"{base_url}{sub_directory}{encoded_path}"
url = f"{base_url}{sub_directory}{encoded_name}"
urls.append(f"{file_size_bytes}:{current_timestamp}:{url}") urls.append(f"{file_size_bytes}:{current_timestamp}:{url}")
return urls return urls
@ -36,27 +34,26 @@ def parse_arguments():
"""解析命令行参数""" """解析命令行参数"""
parser = argparse.ArgumentParser(description='Generate URLs from file names.') parser = argparse.ArgumentParser(description='Generate URLs from file names.')
parser.add_argument('--dir', type=str, default='', help='Sub-directory for generating file URLs (optional)') parser.add_argument('--dir', type=str, default='', help='Sub-directory for generating file URLs (optional)')
parser.add_argument('--output', type=str, default='urls.txt', help='Output file name (default: urls.txt)')
parser.add_argument('--base-url', type=str, default='https://link.kite.kim/feng', help='Base URL for generating file URLs (default: https://link.kite.kim/feng)')
return parser.parse_args() return parser.parse_args()
def main(): def list_files_recursive(start_path='.'):
# 解析命令行参数 """递归列出目录及其子目录中的所有文件"""
args = parse_arguments() file_paths = []
for root, dirs, files in os.walk(start_path):
# 固定的base_url值 for file in files:
base_url = 'https://link.kite.kim/feng' file_paths.append(os.path.join(root, file))
return file_paths
# 获取当前目录下的所有文件名,排除此脚本文件和隐藏文件
current_script = os.path.basename(__file__)
file_names = [f for f in os.listdir('.') if os.path.isfile(f) and f != current_script and not f.startswith('.')]
# 生成URL链接
urls = generate_urls(file_names, base_url, args.dir)
# 保存URL链接到文本文件
output_file = 'urls.txt'
save_urls(urls, output_file)
print(f"URL链接已保存到{output_file}") def main():
args = parse_arguments()
current_script = os.path.basename(__file__)
file_paths = list_files_recursive('.')
file_paths = [f for f in file_paths if os.path.isfile(f) and os.path.basename(f) != current_script and not os.path.basename(f).startswith('.')]
urls = generate_urls(file_paths, args.base_url, args.dir)
save_urls(urls, args.output)
print(f"URL链接已保存到{args.output}")
if __name__ == '__main__': if __name__ == '__main__':
main() main()