Create Web Project


/ Published in: DOS Batch
Save to your folder(s)



Copy this code and paste it in your HTML
  1. @ECHO off
  2. cls
  3. echo What name do you want for your new project?:
  4. :start
  5. set choice=
  6. set /p choice=
  7. mkdir %choice%
  8. cd %choice%
  9. mkdir js,css,img
  10. echo "" > js\script.js
  11. echo "" > css\default.css
  12. echo "" > admin\index.php
  13. echo "" > index.php

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.