Created
September 16, 2014 18:30
-
-
Save shaosh/40cb2db191d6dc755251 to your computer and use it in GitHub Desktop.
Batch Script to Create files and folders
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if not exist "reports\" (mkdir reports) | |
cd reports | |
if exist report.xml ( | |
del "report.xml" | |
) | |
type nul >report.xml | |
echo ^<?xml version="1.0" encoding="UTF-8"?> >> report.xml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment