Discussion:
AITEMP folder filled with large .tmp files
(too old to reply)
D***@adobeforums.com
2007-05-01 17:32:36 UTC
Permalink
All-
Is it possible for the C:\Documents and Settings\user account\Local Settings\Temp\AITEMP folder to be filled with 500Mb .tmp files because of
the presence of large rasters in AI files?
Thanks in advance.
Cheers,
Doug
System: Win XP SP2, AI 10.0.3
H***@adobeforums.com
2007-05-01 19:25:36 UTC
Permalink
I suppose it's possible.

How large are those raster images you are placing in your AI document?

How much RAM does your PC have?

Are you saying the temp files are there even after you close AI?

(Ahh... AI 10... the good old days when AI would clean up after itself... and not leave AITEMP folders littered all over the place.)
J***@adobeforums.com
2007-05-01 21:17:40 UTC
Permalink
Thank you, Harron. I just found 2 GB there.
D***@adobeforums.com
2007-05-01 22:28:40 UTC
Permalink
Harron-
Raster images are 400Mb+. PC has 2Gb of RAM. The files stick around after close ...

Know of any scripts that would clean out the AITEMP folder at AI close?
Regards,
Doug
H***@adobeforums.com
2007-05-02 02:58:54 UTC
Permalink
Wow. Those are some huge raster images, Doug.

In any event, there shouldn't be any AITEMP folders left if you quit AI 10 normally. (That's not the case with AI 12, which leaves AITEMP folders behind on designated scratch disks.) I must say, however, that I've never worked with placed images that large, so I wouldn't know whether there might be some different behavior under those circumstances.

You can automate trashing of AITEMP folders by launching AI via a batch file. Example:

------------
@echo off
c: {or drive letter which corresponds to the AI install drive}
cd {directory path to Illustrator.exe, usually ending in '...Support Files\Contents\Windows}
start /max /wait illustrator.exe %1
c:
cd \
rd /s /q x:\aitemp {where 'x' is the drive letter or path of your first scratch disk}
rd /s /q y:\aitemp {where 'y' is the drive letter or path of your second scratch disk}
exit
------------

Don't enter my comments in braces { }. Save the above (out of Notepad or equivalent) as startAI.bat (or whatever but with the .bat extension). Set batch file properties to run minimized. Also reassign file association for all desired extensions, such as .ai, so that startAI.bat (and not illustrator.exe) is the default application.

This method has the added benefit of starting AI maximized (rather than in a window). If you do not want that to happen, remove the '/max' parameter from the 'start' command.
Loading...