2 Star 1 Fork 0

creatorliao/自动整理剪辑视频

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tool_delete_files.py 598 Bytes
一键复制 编辑 原始数据 按行查看 历史
creatorliao 提交于 2024-07-03 21:21 . 初始版本
from pathlib import Path
def delete_files(folder_path: Path):
"""
删除目录下所有非 .mp4 的文件
注意,不遍历子文件夹,仅处理当前层级
"""
# Iterate over each item in the directory
for item in folder_path.iterdir():
# Check if the item is a file and not an .mp4 file
if item.is_file() and not item.name.endswith('.mp4'):
# Delete the file
item.unlink()
print(f"Deleted: {item}")
if __name__ == '__main__':
folder_path = Path(r'D:\云盘下载\产品管理')
delete_files(folder_path)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/creatorliao/auto_split_videos.git
[email protected]:creatorliao/auto_split_videos.git
creatorliao
auto_split_videos
自动整理剪辑视频
master

搜索帮助