Yes. The DimPro banks are actually subdirectories under C
:\ProgramData\Cakewalk\Dimension Pro\Programs. The patches are separate files in are those subdirectories
. Rapture is organized the same way in
C:\ProgramData\Cakewalk\Rapture\Programs. In fact, I often use the search function in windows to search those directories when looking for patches.
dir /s/b is a DOS command to create a list of file names within a directory tree, traversing all the subdirectories below where the command is issued.
The
> somefilename.txt redirects the result of
dir /s/b to a text file called
somefilename.txt. You can use any name of your choosing.
If you wish, you can add the full directory path to the
dir command. Then it does not matter where the cmd.exe opens up. The full commands would be:
dir /s/b "C
:\ProgramData\Cakewalk\Dimension Pro\Programs" > dimpro.txtdir /s/b "C
:\ProgramData\Cakewalk\Rapture\Programs" > rapture.txt
This will produce two files in the current directory containing all the patches for boths synths.
post edited by scook - 2013/08/28 17:46:47