Jd Express Tracker
实时追踪京东物流运单,支持批量查询与异常诊断。
下载 28
自动按类型、日期、大小分类并清理重复文件,支持批量重命名与旧文件删除。
openclaw skills install @di5cip1e/director-file-organizer命令、参数、文件名以原文为准
自动组织和管理文件集合。
按文件扩展名分组:
/documents/ → .pdf, .doc, .docx, .txt
/images/ → .jpg, .png, .gif, .svg
/videos/ → .mp4, .mov, .avi
/archives/ → .zip, .rar, .7z
/audio/ → .mp3, .wav, .flac
/code/ → .js, .py, .html, .css根据修改时间进行组织:
/2026/04/07/
/2026/04/06/
/2026/03/import hashlib
def find_duplicates(path):
hashes = {}
for file in Path(path).rglob('*'):
if file.is_file():
h = hashlib.md5(file.read_bytes()).hexdigest()
hashes.setdefault(h, []).append(file)
return {h: f for h, f in hashes.items() if len(f) > 1}支持的命名模式:
prefix_001.jpg, prefix_002.jpg2026-04-07_description.jpgfile_v1.txt, file_v2.txtfrom datetime import datetime, timedelta
def cleanup_old(path, days=90):
threshold = datetime.now() - timedelta(days=days)
for file in Path(path).rglob('*'):
if file.is_file() and datetime.fromtimestamp(file.stat().st_mtime) < threshold:
file.unlink() # 或移至回收站已收录 3 个 Skill