Currently temp files are being written to c:\temp and there is not enough space on this drive.
Hi,First of all I think it would be a good idea to clean up the temp folder. Probably your OS will also use the C drive, and having little space left will make your system very slow. How can I set where the raster calculator stores temporary files?
If you are using any geoprocessing tool you can select the option "Environments..." in the "Geoprocessing" menu. This will open the Geoprocessing Settings dialog. Expand "Workspace" and change the values for Current en Scratch workspace.Current workspace is where all results are written.Scratch workspace is the location where temporary storage of intermediate results takes place.In Python you could also use:
import arcpy
from arcpy import env
env.workspace = r'C:\Project\ArcGIS94beta\AHN2\AHN2.gdb'
env.scratchWorkspace = r'C:\Project\ArcGIS94beta\AHN2\AHN2.gdb'
You can also create a new geodatabase on the drive you want to use (through ArcCatalog) and then rightclick on the gdb and select the option "Make Default Geodatabase".Kind regards,