hunting/middleware/FilesManager/README.md
2024-06-15 08:35:07 +08:00

34 lines
892 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 1. 文件管理
## 1.1. 概述
  IPC产品的文件管理模块。抓拍的图片或者视频的保存/删除/查询等操作通过该模块实现。
## 1.2. 数据库管理设计
  考虑到拓展性使用数据库salite3对文件的各种属性进行管理。
### 1.2.1. 数据库表
## 1.3. 文件夹管理
```
DCIM/ // 根目录
├── picture // 图片目录
│   └── 2024 // 年份记录
│   ├── 01 // 月份记录
│   │   └── xxx.jpg
│   └── 02
└── video // 视频目录
└── 2024 // 年份记录
└── 01 // 月份记录
└── xxx.MP4
```
## 1.4. 文件命名规则
**文件类型**
1. PIR抓拍
2. 定时抓拍;
3. 手动抓拍;