代码拉取完成,页面将自动刷新
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)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。