If you use LTC spice, you probably have a bunch of large temporary files that hang around using up disk space. I have found it very useful to place a file delete utility in the windows sendto folder. The Windows sendto folder has moved around with different windows versions but the current location is something like
%userprofile%\AppData\Roaming\Microsoft\Windows\SendTo
The file itself is a very simple bat file "spice cleaner.bat":
%~d1
cd %1
del /S *.raw *.log *.fft
pause
You just right click a folder, sendto -> "spice cleaner.bat". I prefer to pause the script before it closes so that I can see what has been found and deleted.
cheers,
Steve
%userprofile%\AppData\Roaming\Microsoft\Windows\SendTo
The file itself is a very simple bat file "spice cleaner.bat":
%~d1
cd %1
del /S *.raw *.log *.fft
pause
You just right click a folder, sendto -> "spice cleaner.bat". I prefer to pause the script before it closes so that I can see what has been found and deleted.
cheers,
Steve