Temp Files

G

Guest

I have Windows XP Home Edition, SP2. In C:\Documents & Settings\My Name\Local
Settings\Temp, I have 337 MBs of files in the Temp files. Can I get rid of
all of these files, or could there be something important in there? While I’m
asking… What is the difference between “Temp†files and .tmp files?
GusGus
 
R

R. McCarty

There are two variations of temporary variables, Temp & Tmp. The
folder that holds workspace files are usually named Temp. The .Tmp
is a unique extension that identifies the file as temporary content. A
file doesn't have to be a .tmp to be a temporary file. Many programs
unpack or prepare installs by loading the content to a Temp folder &
then transferring to their permanent location.
 
T

Tom Porterfield

GusGus said:
I have Windows XP Home Edition, SP2. In C:\Documents & Settings\My Name\Local
Settings\Temp, I have 337 MBs of files in the Temp files. Can I get rid of
all of these files, or could there be something important in there? While I’m
asking… What is the difference between “Temp†files and .tmp files?
GusGus

GusGus, as in the little mouse from Cinderella?

Anyway, files in temp are generally safe to delete. What I recommend is
that you reboot your PC first, and then delete any files remaining in
your temp folder.

The temp folder is nothing more than a system mapped place for programs
to store temporary files. Really well behaved programs clean up their
temp files automatically, most however do not. Some programs actually
give their temp files the .tmp extension to indicate them as such, but
there is nothing that says this is a requirement.

You can also use the Disk Cleanup wizard to clear out temp files
(Start->All Programs->Accessories->System Tools->Disk Cleanup).
 
T

Terry R.

On 11/2/2007 11:11 AM On a whim, GusGus pounded out on the keyboard
I have Windows XP Home Edition, SP2. In C:\Documents & Settings\My Name\Local
Settings\Temp, I have 337 MBs of files in the Temp files. Can I get rid of
all of these files, or could there be something important in there? While I’m
asking… What is the difference between “Temp†files and .tmp files?
GusGus

Hi Gus,

You can get rid of those files. Click on the folder in the left pane,
press Ctrl-A to select all and hold down Shift and press the delete key.
Any files in use will not be deleted, and the process ends, so then
you can select more by date, leaving the most current ones that are most
likely the ones in use.

Temp is the folder. *.tmp files are the files created by programs for
temporary use. There are two variables, temp & tmp.

I always create a batch file on all client machines that runs in the
Startup folder that cleans out the temp folders. I like Deltree.exe, a
utility on Win9x machines that works fine in NT/w2k/xp (you can find in
online by Googling for it). You can also use something like this in a
batch file and put a shortcut to it in your Startup folder:

rd /s/q %temp%\
md %temp%\
rd /s/q %systemroot%\temp
md %systemroot%\temp


The DEL command doesn't work as well as it should. It will remove
files, even files within subdirectories, but won't remove the
subdirectories themselves. If you don't mind having a lot of empty
folders you can use that instead. I like using DELTREE because it
doesn't remove the folder, just the contents. But as fast as all that
happens, it's not really an issue.

--
Terry R.

***Reply Note***
Anti-spam measures are included in my email address.
Delete NOSPAM from the email address after clicking Reply.
 
G

Guest

I want to thank all of you who answered my Temp File Post! My computer is a
lot leaner now. And yes, sometimes I wish I was a little mouse….., but the
thought passes!!
GusGus
 
P

PA Bear

Just run [Start > (All) Programs > Accessories > System Tools > Disk
Cleanup, GusGus. <wink>
 
N

Newbie Coder

Gus,

START | RUN | Type %temp% & press ENTER

CTRL + A (select all)
DEL (delete)
ENTER (press enter)

Some tilde '~' files may not be deleted as they could be locked open by windows. Same with
'perf' files
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top