Fruity Loops Help Needed

Audio Plugin Hosts and other audio software applications discussion
Post Reply New Topic
RELATED
PRODUCTS

Post

Where is the Temporary record directory at in FL studio, i keep getting the message that my c: drive is running out of space when i'm trying to use the fruity slicer so i'd like to change the recording drive to my dedicated audio drive?


thanks in advance

Post

bump

Post

Like to help you out my friend, but I have no idea :shrug:...I know you well enough that this isn't an accusation as it is sometimes...but why don't you ask at looptalk?...:)
The highest form of knowledge is empathy, for it requires us to suspend our egos and live in another's world. It requires profound, purpose‐larger‐than‐the‐self kind of understanding.

Post

In such situations I usually have to delete porn :(

Post

:lol: :lol:

Post

actualy Hink I did ask at looptalk first, but as usual i get better responses here...

i've already deleted the porn :hihi:

Post

The Chase wrote:In such situations I usually have to delete porn :(
who is stupid enough to keep porn on C:?

I keep my porn on my external hard drive with DVD backups in triplicate!

Post

Mines in Data/Patches/Recorded.
None are so hopelessly enslaved as those who falsely believe they are free. Johann Wolfgang von Goethe

Post

thanks teksonik, so is it right that i would need to make a shortcut called recorded that lead to my audio drive which is my H drive, or is that recorded directory only for tempfiles in which case i just need to erase whatever's in there?

Post

arke wrote:
The Chase wrote:In such situations I usually have to delete porn :(
who is stupid enough to keep porn on C:?
Someone who is hiding it :wink:

Post

this problem came up again on another forum. i believe there is a reg entry that controls where FL puts recorded material, but I forget waht to modify. I'll post back if a defniitive answer is posted on this other forum.

Also, is this w/6.1 or 6.0.8?

Post

thans G-Rol24 it's 6.1

Post

ok so the create a shortcut idea doesn't work, can anyone shed some light on this one

Post

stale bread wrote:ok so the create a shortcut idea doesn't work, can anyone shed some light on this one
if the filesystem is ntfs, use a ntfs junction.

http://www.google.com/search?&q=ntfs%20junction

they are like 'hardware' shortcuts -- not just .lnk files, they are like symbolic links in linux, a pointer to another place. would work.

http://www.funklabs.org/share/linkd.exe

grab that, copy it to c:\windows, then open a command prompt.

then type: linkd

Code: Select all

>linkd
Links an NTFS directory to a target valid object name in Windows 2000.

LINKD Source [/D] Destination

  Source             - Displays the Windows 2000 name targeted by Source

  Source Destination - Links source directory to Destination directory or a
                       Windows 2000 device or any valid Windows 2000 name

  Source /D          - Deletes Source, regardless of whether a link exists at
                       source

  /?                 - Prints this help message

LINKD grafts (links) the target name directly into the name space at Source,
so that Source subsequently acts as a name space junction. The Source directory
must reside on a disk formatted with NTFS in Windows 2000. The destination
(the target of the link) can be any valid directory name or device name or valid
object name in Windows 2000. When the target name does not resolve to a directory
or a device, open calls fail.

All characters in both the Source and Destination names must be in the ASCII
character set. Usage of arbitrary Unicode characters is not supported.

Type "LINKD /? | more" if you need to see all the help text
so the syntax is: linkd <where you want your junction> -- in this case you want it in that temporary audio recording folder, and then a space followed by where you want it to really point.

before continuing BACKUP your "recorded" folders contents as it is now!

so: cd "C:\Program Files\Image-Line\FL Studio 6\Data\Patches" <enter>

then: rd /s recorded <enter> (need to remove the recorded directory since we are gonna trick fl to use junction instead)

finally: linkd recorded d:\fl_audio (replace this with your destination) <enter>

here i'll do it and show the log:

Code: Select all

C:\>cd "C:\Program Files\Image-Line\FL Studio 6\Data\Patches"

C:\Program Files\Image-Line\FL Studio 6\Data\Patches>rd /s recorded
recorded, Are you sure (Y/N)? y

C:\Program Files\Image-Line\FL Studio 6\Data\Patches>linkd recorded M:\Temp\FLStudio
Link created at: recorded

C:\Program Files\Image-Line\FL Studio 6\Data\Patches>dir
 Volume in drive C is WINDOWS
 Volume Serial Number is A819-B25B

 Directory of C:\Program Files\Image-Line\FL Studio 6\Data\Patches

07/01/2006  03:31 PM    <DIR>          .
07/01/2006  03:31 PM    <DIR>          ..
12/16/2005  03:54 AM    <DIR>          Automation
12/16/2005  03:54 AM    <DIR>          Channel presets
12/16/2005  03:54 AM    <DIR>          Clipboard files
12/16/2005  03:54 AM    <DIR>          Collected
12/16/2005  03:54 AM    <DIR>          Humanizing presets
01/02/2006  11:16 AM    <DIR>          Misc
01/05/2006  11:41 AM    <DIR>          Mixer presets
12/16/2005  03:55 AM    <DIR>          Packs
12/16/2005  03:55 AM    <DIR>          Plugin presets
12/16/2005  03:55 AM    <DIR>          Project bones
07/01/2006  03:31 PM    <JUNCTION>     recorded
12/16/2005  03:55 AM    <DIR>          Rendered
12/16/2005  03:55 AM    <DIR>          Scores
12/16/2005  03:55 AM    <DIR>          Sliced beats
12/16/2005  03:55 AM    <DIR>          Soundfonts
12/16/2005  03:55 AM    <DIR>          Speech
12/16/2005  03:55 AM    <DIR>          User
               0 File(s)              0 bytes
              19 Dir(s)  10,293,059,584 bytes free

C:\Program Files\Image-Line\FL Studio 6\Data\Patches>cd recorded

C:\Program Files\Image-Line\FL Studio 6\Data\Patches\recorded>dir
 Volume in drive C is WINDOWS
 Volume Serial Number is A819-B25B

 Directory of C:\Program Files\Image-Line\FL Studio 6\Data\Patches\recorded

07/01/2006  03:30 PM    <DIR>          .
07/01/2006  03:30 PM    <DIR>          ..
               0 File(s)              0 bytes
               2 Dir(s)  48,656,642,048 bytes free

C:\Program Files\Image-Line\FL Studio 6\Data\Patches\recorded>
replace <enter> with literal enter keypress :)

also make sure you do not ever delete the C:\Program Files\Image-Line\FL Studio 6\Data\Patches\Recorded folder (or let an uninstaller do it) without FIRST removing the ntfs junction thusly:

Code: Select all

>linkd recorded /d
The delete operation succeeded.

C:\Program Files\Image-Line\FL Studio 6\Data\Patches>
because junctions are just pointers, and it would delete all the contents IN the destination (in my case m:\temp\FLStudio would be wiped!

so be careful.

Post

upon recovering from his coma, the first words out of his mouth were reported to be.... thank you very much for your help.

Post Reply

Return to “Hosts & Applications (Sequencers, DAWs, Audio Editors, etc.)”