Page 1 of 1

Posted: Fri Jan 23, 2004 3:38 pm
by Immanuel
This is a copy of a post kimgr in another thread. I think it deserves a place in this category.

---------------------------------------------

I always create a folder structure for each song/project that I'm working on. I simply run a .bat file that creates the nessary folders, something like this:

mkdir "_NewProject"
mkdir "_NewProjectAcid"
mkdir "_NewProjectAcidXport"
mkdir "_NewProjectAudio"
mkdir "_NewProjectAudioMaster"
mkdir "_NewProjectAudioMix"
mkdir "_NewProjectAudioPreMix"
mkdir "_NewProjectAudioXport"
mkdir "_NewProjectLogic"
mkdir "_NewProjectLogicPlugInSettings"
mkdir "_NewProjectSFP"
mkdir "_NewProjectSFPPresets"
mkdir "_NewProjectSTS_Sampler"
mkdir "_NewProjectORGs"
mkdir "_NewProjectReaktor"
exit

Kim.

---------------------------------------------

I find it a very nice trick for saving time, and keeping things in good order.

Posted: Fri Jan 23, 2004 5:13 pm
by R0zzer
Top Tip :grin:

Posted: Sun Feb 01, 2004 9:06 am
by King of Snake
I'be also recently been making folders for each new project. No subfolders though since I usually don't have that many files. Just the SFP and Cubase projects and some audiofiles. But it's much easier to have those in one folder instead of three different folders.

Posted: Sun Feb 01, 2004 9:55 am
by Immanuel
I shortened _newproject to just _
This makes it easyer to rename.

Posted: Sun Mar 14, 2004 6:51 pm
by Omb
[quote]
On 2004-01-23 15:38, Immanuel wrote:
This is a copy of a post kimgr in another thread. I think it deserves a place in this category.

---------------------------------------------

I always create a folder structure for each song/project that I'm working on. I simply run a .bat file that creates the nessary folders, something like this:

---------------------------------------------

hello everyone,
Immanuel , how you make this .bat file ?

cheers
Omb

Posted: Mon Mar 15, 2004 12:31 am
by at0m
A .bat file is a plain text file with .bat instead of .txt extension. I use Notepad to make a batch file...

Posted: Tue Mar 16, 2004 4:48 am
by Immanuel
Yes, just type in all the stuff that looks like code. After that, you rename the file - this is the way, I change extensions.

Posted: Wed Aug 25, 2004 4:09 am
by singleton
Hi!
On 2004-02-01 09:55, Immanuel wrote:
I shortened _newproject to just _
This makes it easyer to rename.
You can save time by passing the name of the project as a command line argument to the batch file.

This way, you don't need to rename anything by hand. Just write a batch like:

mkdir %1
mkdir %1Logic
mkdir %1LogicAudio
mkdir %1SFP
etc.

And use it like this:

>> create.bat RawkSong

To yield a directory tree like:

RawkSong
RawkSongLogic
RawkSongLogicAudio
RawkSongSFP
etc.

P.S. This is my first post to this forum. I've been reading all this CW-related stuff in here for a few weeks now and find it just excellent.

Posted: Thu Nov 25, 2004 6:51 pm
by doodyrh
On 2004-08-25 05:09, singleton wrote:
P.S. This is my first post to this forum. I've been reading all this CW-related stuff in here for a few weeks now and find it just excellent.
I was about to make the same suggestion but instead I'll say "Great idea!". :wink:
Nobody replied and he hasn't been back in three months so I figure some encouragement is needed.
Or perhaps username suggests there'll only ever be one post.

Posted: Wed Dec 08, 2004 4:27 pm
by dehuszar
If you don't want to make a batch file, you can do what I do, which is make a directory called "Template" (or whatever) and fill it with sub-directories that are useful to you (Mine are SFP, Cubase, Samples, Presets, Mixes&Masters <for all my bounces>).

When you start a new project, right-click & drag the Template folder into the same window so you can make a copy of the folder, F2 when highlighted and rename.

Then all the Cubase .cpr project files, Audio and automation go in the Cubase folder (note: you have to select this folder at project creation time for Cubase to do it automatically, otherwise the Audio Pool manager is used), and you can then save all the other files where they need to go.

Easy as pie for backups.

Sam

Posted: Thu Sep 29, 2005 10:43 pm
by singleton
Nobody replied and he hasn't been back in three months so I figure some encouragement is needed.
Or perhaps username suggests there'll only ever be one post.
Hah, thanks for the encouragement and a good point about the username :smile:. I went out to purchase a new PC & Scope Professional during the summer of 2004 but have spent less than 10 hours with it. :sad: Now yesterday, I loaded a Modular 3 FM patch and played for 3 hours and now I'm here reading the forum again. I'll have to get my motivation back and start making music with the SCOPE stuff.

<font size=-1>[ This Message was edited by: singleton on 2005-09-29 23:44 ]</font>

Re: New folders for all your projects

Posted: Wed Nov 04, 2009 5:49 am
by at0m
Update, creating a folder named per project date: yyyy-mm-dd

REM set pro to your project's main folder instead of c:
set pro=c:
set prodate=%date:~9,4%-%date:~6,2%-%date:~3,2%
mkdir "%pro%\%prodate%"
REM personalise your folders
mkdir "%pro%\%prodate%\cubase"
mkdir "%pro%\%prodate%\fruity"
mkdir "%pro%\%prodate%\live"
mkdir "%pro%\%prodate%\samples"


Counting characters in the output of "echo %date%" in cmd, you can adjust the "~x,y" with x being the amount of characters to skip, and y being the amount to include. Save as newproject.bat and put it within reach :)