Files
worldmodel/plans/iphone/FILE_REORGANIZATION_GUIDE.md
T
gaojie 6b64d458bd
Sync to site1 / sync (push) Has been cancelled
chore: update iphone categories from worldmodel to RoomPlan
2026-05-21 02:30:30 +08:00

133 lines
3.2 KiB
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.
---
title: "文件整理指南"
date: 2026-05-20
draft: false
tags: ["iPhone", "3D 重建", "RoomPlan", "导航", "iOS", "Web"]
categories: ["RoomPlan"]
---
# 文件整理指南
## 📁 需要整理的文件
请将以下iPhone相关文档移动到 `plans/iphone/` 目录:
### 需要移动的文件
```bash
# 从 plans/ 移动到 plans/iphone/
1. iphone_simplified_plan.md
→ plans/iphone/iphone_simplified_plan.md
2. iphone_3d_reconstruction_opensource.md
→ plans/iphone/iphone_3d_reconstruction_opensource.md
3. roomplan_accuracy_and_cad_export.md
→ plans/iphone/roomplan_accuracy_and_cad_export.md
```
## 🔧 手动操作步骤
### 方法1:使用命令行(推荐)
```bash
# 在项目根目录执行
cd /Users/mac/code/worldmodel/plans
# 移动文件到iphone目录
mv iphone_simplified_plan.md iphone/
mv iphone_3d_reconstruction_opensource.md iphone/
mv roomplan_accuracy_and_cad_export.md iphone/
```
### 方法2:使用VS Code
1. 在VS Code左侧文件浏览器中
2. 选中文件 `iphone_simplified_plan.md`
3. 拖拽到 `plans/iphone/` 文件夹
4. 对其他两个文件重复操作
### 方法3:使用FindermacOS
1. 打开Finder,导航到 `/Users/mac/code/worldmodel/plans`
2. 选中三个iPhone相关文件
3. 拖拽到 `iphone` 文件夹
## ✅ 整理后的目录结构
```
plans/
├── README.md
├── EXECUTIVE_SUMMARY.md
├── hotel_scene_implementation_plan.md
├── hotel_scene_implementation_plan_part2.md
├── hotel_scene_implementation_plan_part3.md
├── data_format_specification.md
├── data_format_specification_part2.md
├── iphone/ ← iPhone专用目录
│ ├── README.md ← 已创建
│ ├── iphone_simplified_plan.md ← 需要移动
│ ├── iphone_3d_reconstruction_opensource.md ← 需要移动
│ └── roomplan_accuracy_and_cad_export.md ← 需要移动
└── FILE_REORGANIZATION_GUIDE.md ← 本文件
```
## 📝 移动后需要更新的链接
移动文件后,需要更新以下文档中的链接:
### 1. plans/README.md
将:
```markdown
- [iPhone简易方案](iphone_simplified_plan.md)
```
改为:
```markdown
- [iPhone简易方案](iphone/iphone_simplified_plan.md)
```
### 2. plans/EXECUTIVE_SUMMARY.md
将相关链接路径更新为:
```markdown
- [iPhone方案](iphone/iphone_simplified_plan.md)
```
## 🎯 验证整理结果
整理完成后,检查:
1.`plans/iphone/` 目录包含4个文件(README + 3个文档)
2.`plans/` 根目录不再有iPhone相关文档
3. ✅ 所有链接正常工作
4. ✅ VS Code中打开文档无错误
## 🚀 快速验证命令
```bash
# 检查iphone目录
ls -la plans/iphone/
# 应该看到:
# README.md
# iphone_simplified_plan.md
# iphone_3d_reconstruction_opensource.md
# roomplan_accuracy_and_cad_export.md
# 检查plans根目录(不应该有iPhone文件)
ls plans/ | grep iphone
# 应该没有输出
```
---
**注意**:移动文件后,Git会自动跟踪文件移动。如果使用Git,移动后记得提交:
```bash
git add plans/
git commit -m "Reorganize: Move iPhone docs to iphone/ subdirectory"
```