From d8ca7cc311f7bed460cb25267375e5cc2f11ce8f Mon Sep 17 00:00:00 2001 From: infeeeee Date: Tue, 10 Dec 2019 17:01:58 +0100 Subject: [PATCH] Added alternative folderstructurebuilders --- FolderStructureBuilder.bat | 12 ------------ FolderStructureBuilder1.bat | 8 ++++++++ FolderStructureBuilder2.bat | 7 +++++++ 3 files changed, 15 insertions(+), 12 deletions(-) delete mode 100644 FolderStructureBuilder.bat create mode 100644 FolderStructureBuilder1.bat create mode 100644 FolderStructureBuilder2.bat diff --git a/FolderStructureBuilder.bat b/FolderStructureBuilder.bat deleted file mode 100644 index 64bece6..0000000 --- a/FolderStructureBuilder.bat +++ /dev/null @@ -1,12 +0,0 @@ -@echo off - -setlocal ENABLEDELAYEDEXPANSION - -SET FOLDERS=("01 - Project Management" "02 - Incoming Data" "03 - Work in Progress" "04 - Outgoing Data") - -cd %~dp0 - -FOR %%A in %FOLDERS% DO ( - mkdir %%A -) - diff --git a/FolderStructureBuilder1.bat b/FolderStructureBuilder1.bat new file mode 100644 index 0000000..eb4abf4 --- /dev/null +++ b/FolderStructureBuilder1.bat @@ -0,0 +1,8 @@ +@echo off +md "01 - Project Management" +md "02 - Incoming Data" +md "03 - Work in Progress"\"01 - Extra Works" +md "03 - Work in Progress"\"02 - Revit Families" +md "03 - Work in Progress"\"03 - Links" +md "04 - Outgoing Data" + diff --git a/FolderStructureBuilder2.bat b/FolderStructureBuilder2.bat new file mode 100644 index 0000000..82ac5e5 --- /dev/null +++ b/FolderStructureBuilder2.bat @@ -0,0 +1,7 @@ +@echo off +md "01-PM" +md "02-In" +md "03-WIP"\"01-Extra" +md "03-WIP"\"02-Families" +md "03-WIP"\"03-Links" +md "04-Out" \ No newline at end of file