Create skeleton web project


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



Copy this code and paste it in your HTML
  1. echo off
  2. mkdir NewProject
  3. cd NewProject
  4. mkdir css
  5. mkdir img
  6. copy /y NUL index.php >NUL
  7. copy /y NUL js\app.js >NUL
  8. copy /y NUL css\default.css >NUL

Report this snippet


Comments


You need to login to view comments.