File paths

pathlib.Path MUST be used, not os.path. All path manipulation MUST go through pathlib.

from pathlib import Path

roadmap_dir = Path.home() / ".roadmaps" / project_name
version
1.0.2
platforms
python
tags
file-paths, language, python
author
Mike Fullerton
modified
2026-04-09

Change History

Version Date Author Summary
1.0.2 2026-04-09 Mike Fullerton Add trigger tags
1.0.1 2026-04-09 Mike Fullerton Reorganize into use-case directory
1.0.0 2026-03-27 Mike Fullerton Initial creation