Metadata-Version: 2.4
Name: cm_filekit
Version: 1.0.0
Summary: 计算概论C课程文件夹扫描、统计、整理和安全读写工具
Author: Chen Mo
Author-email: chenmoemail@126.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: Chinese (Simplified)
Classifier: Intended Audience :: Education
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

# cm_filekit

《计算概论C》文件与目录任务工具库，适合文件读写和异常处理之后使用。

```bash
pip install cm_filekit
```

```python
import cm_filekit

print(cm_filekit.count_by_extension('.'))
print(cm_filekit.find_large_files('.', min_mb=20))

report = cm_filekit.make_file_report('.')
print(report)

moves = cm_filekit.organize_by_extension('.', dry_run=True)
cm_filekit.write_csv('整理预览.csv', moves, header=['原文件', '新位置'])
```

这个库不替代 `open()`、循环和路径知识，而是把真实文件夹任务做得更容易上手。
