加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
naming_part_pinjie.py 2.85 KB
一键复制 编辑 原始数据 按行查看 历史
SkyTuring 提交于 2019-01-31 21:32 . 新增
import os
import json
import shutil
import pinjie
from natsort import natsorted
def get_sub_dir_names(file_dir):
for root, dirs, files in os.walk(file_dir):
return dirs
def get_sub_file_names(file_dir):
for root, dirs, files in os.walk(file_dir):
return files
def makedir(dir_name):
# 创建文件夹
if not os.path.exists(dir_name):
os.makedirs(dir_name)
print("---------------------------")
print("文件夹创建成功!")
print(dir_path)
print("---------------------------")
if __name__ == "__main__":
file_format = '.flv' # 文件格式
srcFile = "E:\\BiliBili" # 文件所在目录
title = "" # 文件标题
dir_title = "" # 新目录名
dir_path = "E:\\BiliBili" # 新路径
catalog = [] # 最后目录
total_part = ""
dir_names = natsorted(get_sub_dir_names(srcFile))
for path in dir_names:
if int(path) >= 83:
file_path = os.path.join(srcFile, path)
file_names = natsorted(get_sub_file_names(file_path))
for info_file_name in file_names:
info_file_path = os.path.join(file_path, info_file_name)
if info_file_path.endswith("info"):
info_file = open(info_file_path, encoding='UTF-8')
info = info_file.read()
title = json.loads(info)["PartName"]
total_part = json.loads(info)["TotalParts"]
catalog.append(title)
if not dir_title.strip():
# 创建文件夹
dir_title = json.loads(info)["Title"]
dir_path = os.path.join(dir_path, dir_title)
makedir(dir_path)
print(dir_path)
info_file.close()
if str(total_part) == "1":
print(title+"\t\t只有一个分片")
for file_name in file_names:
ole_file = os.path.join(file_path, file_name)
if ole_file.endswith(file_format):
new_file = os.path.join(file_path, title) + file_format
print(new_file)
# 改名
os.rename(ole_file, new_file)
# 复制
shutil.copy(new_file, dir_path)
else:
print(title + "\t\t有多个分片")
pinjie.pie_jie_file(file_path, os.path.join(dir_path, title) + ".mp4")
# 生成目录
write_catalog = open(dir_path + "\\catalog.txt", "w")
catalog = natsorted(catalog)
for title in catalog:
write_catalog.write(title + "\n")
print(title)
write_catalog.close()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化