摘要:
//获取当前时间 function formatDate(now) { var year=now.getFullYear(); var month=now.getMonth()+1; var date=now.getDate(); if (month >= 1 && month <= 9) { mo 阅读全文
摘要:
pip install watchdog 安装需要的包 class MyHandler(FileSystemEventHandler): def __init__(self): f = open('config.js') j = json.load(f) for c in j["config"]: 阅读全文