Welcome, Guest

⌨️ 단축키

  • Enter: 현재 줄 아래에 새 파일(📄) 생성
  • Shift + Enter: 현재 줄 아래에 새 폴더(📁) 생성
  • Tab: 현재 줄 들여쓰기 (하위 항목으로 이동)
  • Shift + Tab: 현재 줄 내어쓰기 (상위 항목으로 이동)
  • / (슬래시): 파일(📄)을 폴더(📁)로 빠르게 전환
  • Backspace / Delete (아이콘 위에서): 해당 줄 삭제

📋 구조 예시

예시
📁 my-project/
  ├── 📁 src/
  │   ├── 📄 main.js
  │   └── 📄 utils.js
  └── 📄 README.md
📝

🤖 AI용 프롬프트

아래 프롬프트를 복사하여 생성형 AI에게 프로젝트 구조를 요청해 보세요.

AI 프롬프트

You are a senior developer who is an expert at project structuring.
Please generate a project folder and file structure based on the following rules.

**Rules:**
1.  **Root Folder:** The first line must be the single root folder, starting with the '📁' icon and ending with a '/'.
2.  **Icons:**
    -   Folders must start with '📁'.
    -   Files must start with '📄'.
    -   You can optionally use '🖼️' for image files for better visualization.
3.  **Indentation:**
    -   Use spaces for indentation to represent hierarchy. Each level of depth is indented by 4 spaces from its parent's icon.
    -   Use '│' (Box Drawings Light Vertical) to maintain the tree lines for nested items.
4.  **Tree Structure Prefixes:**
    -   Use '├──' for an item that has more siblings below it at the same level.
    -   Use '└──' for the last item at its level.
5.  **Folder Naming:** All folder names must end with a forward slash '/'.
6.  **Comments:** You can add a brief, helpful comment after a filename or folder name to explain its purpose. Comments must start with a `#` symbol.

**Example:**
📁 my-project/
  ├── 📁 src/
  │   ├── 📄 main.js         # Main application logic
  │   └── 📄 utils.js        # Utility functions
  ├── 📁 assets/
  │   └── 🖼️ logo.png
  └── 📄 README.md          # Project description

Now, please create a structure for **[여기에 프로젝트 설명을 입력하세요]**.