自动文件生成器 Python
项目目录创建者
概述
**项目目录创建器** 是一个基于 Python 的应用程序,允许用户为“Web 开发项目”创建预定义的目录结构。该工具使用 CustomTkinter 构建的 GUI 提供直观的界面,只需单击几下即可输入项目名称、选择目录并生成所需的文件夹和文件结构。
特征
安装
git clone https://github.com/BOSS294/project-directory-creator.git cd project-directory-creator
pip install customtkinter
python directory_creator.py
如何使用

目录结构
该应用程序创建以下结构:
ProjectName/ │ ├── Assets/ │ ├── Accounts/ │ │ ├── Contents/ │ │ ├── Pages/ │ │ │ ├── login.php │ │ │ ├── register.php │ │ │ └── user-dashboard.php │ │ ├── Processors/ │ │ ├── Scripts/ │ │ │ └── accounts.js │ │ └── Styles/ │ ├── Admins/ │ │ ├── Contents/ │ │ ├── Pages/ │ │ │ └── admin-dashboard.php │ │ ├── Processors/ │ │ ├── Scripts/ │ │ └── Styles/ │ ├── Extras/ │ │ ├── Connections/ │ │ ├── Documentations/ │ │ ├── Helps/ │ │ └── Updates/ │ └── Website/ │ ├── Contents/ │ ├── Images/ │ ├── Pages/ │ │ ├── about-us.php │ │ ├── contact.php │ │ ├── faqs.php │ │ ├── privacy-policy.php │ │ └── terms-conditions.php │ ├── Processors/ │ ├── Scripts/ │ │ └── main.js │ ├── Styles/ │ └── Videos/ └── index.php
如何贡献?
我们欢迎社区的贡献!如果您想为该项目做出贡献,请按照以下步骤操作:
1. 分叉存储库
2. 克隆你的 Fork
git clone https://github.com/yourusername/project-directory-creator.git cd project-directory-creator
3. 创建分支
git checkout -b feature/your-feature-name
将“your-feature-name”替换为你的功能或错误修复的描述性名称。
4. 做出改变
5. 提交你的更改
git add .
git commit -m "Feat: description of your feature"
6. 推送到你的 Fork
git push origin feature/your-feature-name