Files

40 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2026-01-05 21:10:11 +08:00
# Attachments
2025-09-13 12:20:50 -04:00
2026-01-05 21:10:11 +08:00
**Purpose:** Storage for all non-text files (images, PDFs, videos, audio).
2025-09-13 12:20:50 -04:00
## Organization
2026-01-05 21:10:11 +08:00
- **Root (05_Attachments/)** - Unprocessed attachments
- **Organized/** - Files that have been properly named and referenced
2025-09-13 12:20:50 -04:00
2026-01-05 21:10:11 +08:00
## Naming Convention
2025-09-13 12:20:50 -04:00
2026-01-05 21:10:11 +08:00
Use descriptive names that indicate the related note:
- `[RelatedNote]_[Description].[ext]`
- Example: `ProjectAlpha_Architecture_Diagram.png`
- Example: `BookNotes_Thinking_Fast_Slow_Cover.jpg`
2025-09-13 12:20:50 -04:00
## Helper Scripts
2026-01-05 21:10:11 +08:00
```bash
pnpm attachments:list # List unprocessed files
pnpm attachments:organized # Count organized files
pnpm attachments:orphans # Find unreferenced files
pnpm attachments:update-links # Update links after moving
2025-09-13 12:20:50 -04:00
```
## Processing Workflow
2026-01-05 21:10:11 +08:00
1. Files initially land in `05_Attachments/`
2. Rename with descriptive names
3. Reference in notes using `![[filename.ext]]`
4. Move to `Organized/` subfolder
5. Update any links if paths change
2025-09-13 12:20:50 -04:00
## Tips
2026-01-05 21:10:11 +08:00
- Process attachments regularly (don't let them pile up)
- Use consistent naming patterns
- Delete duplicates and unused files
- Consider using Gemini Vision to analyze images