Metadata-Version: 2.1
Name: zdpapi-file
Version: 0.1.0
Summary: Python操作文件和文件夹的便捷组件库
Home-page: https://github.com/zhangdapeng520/zdpapi_file
License: MIT
Keywords: zdpapi,zdpapi_file,async,zhangdapeng
Author: 张大鹏
Author-email: lxgzhw@163.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: pydantic (>=1.8.2,<2.0.0)
Requires-Dist: uvicorn (>=0.15.0,<0.16.0)
Project-URL: Documentation, https://github.com/zhangdapeng520/zdpapi_file
Project-URL: Repository, https://github.com/zhangdapeng520/zdpapi_file
Description-Content-Type: text/markdown

# zdpapi_file
Python操作文件和文件夹的便捷组件库

项目地址：https://github.com/zhangdapeng520/zdpapi_file

## 一、概述

### 1.1 功能

- 查看文件夹占用磁盘大小


## 二、快速入门

### 2.1 查看文件夹占用磁盘大小
```python
from zdpapi_file import Directory

def test_disk_usage(path):
    dir = Directory(path)
    print(dir.disk_usage())

if __name__ == "__main__":
    test_disk_usage("D:\\BaiduNetdiskWorkspace\\文档")
```

