아니 여태 하나하나 썼는디 내 프로젝트의 폴더구조를 txt파일로 뽑아주는 명령어가 있었다 (당연히 있었겠는데 왜 생각못햇을가..)
tree
명령어 추가.// Windows: 먼저 설치 필요
// macOS: Homebrew로 설치
brew install tree
// Linux: 패키지 관리자로 설치
sudo apt-get install tree
// Windows (CMD)
tree > filename.txt
// Windows (PowerShell)
tree | Out-File -FilePath filename.txt
// macOS/Linux
tree > filename.txt
// tip
하위 디렉토리 포함: tree -L 깊이
디렉토리만 표시: tree -d
특정 디렉토리에서 실행: tree 디렉토리경로
VS Code extension file-tree-generator