When moving data, you just have to tell the application where you moved the data.
One disk hog is the web browser cache. The cache stores recently viewed web content. Cashing web content significantly improves Internet performance. However, it also takes up disk space.
Changing the location of the cache in Firefox is
considerably more difficult than performing the same task in Internet Explorer.
First, you should clear the current cache via Tools -> Options -> Privacy -> Clear.
Then, you have to add the following code to your user.js preferences file:
Code:
// Path to Cache folder:
user_pref("browser.cache.disk.parent_directory","F:\\CACHE"); This example will put your cache data into the F:\CACHE directory.
This is all made much more complex by the fact that the user.js file does not exist by default
and by the horrible way that Microsoft Windows hides the directory where this file is stored.
Firefox stores this file in the user profile directory. That's a Microsoft standard. The trouble is that the user profile directory is in a different location in different versions of Windows.
On Windows XP/2000, the path to the user profile directory is usually
C:\Documents and Settings\[User Name]\Application Data\Mozilla\Firefox\Profiles\xxxxxxxx.default\, where xxxxxxxx is a random string of 8 characters.
This is about as bad as it gets as far as moving data to new partitions. For most applications, you can make these changes from the GUI's.