C:\WINDOWS\Temp : can I dump it?

I don’t know why you are buying cloning software. There is free dependable stuff out there.

I’ll second Harmonious’ comment, if my opinion matters.

I totally agree. I was just pointing out that your concern for cleanliness in one case is overwhelmed by other cases that you have no control over.

But I am, or used to be. A periodic sweep of an entire drive can be done quickly* and without operator attention, and need not be done frequently, but by choice. Downloading large files the MS way forces me to wait for several minutes for each file; it’s both CPU and disk intensive, so it hogs the system; and I have no choice. There’s no comparison.

It’s unlikely they wrote ANYTHING to the space first. They just changed the directory entry for that file to allocate space and set the file length in the directory to match the desired final number. That action is a million times faster than writing the actual data.

And REALLY good routines will make ONE call to the directory update routine, then write ALL the data, then make ONE call to the directory update to close and release the file. In contrast, the slow ones call the directory to get a single block of space allocated, write one small block of data, then repeat the process until done. The amount of head movement, which is thousands of times slower than sequential disk access, for this latter scheme, is excessive and unnecessary.

If you need to use the file, try. If it is in use, it will be locked, and you can’t. You can’t use the temp file or the destination file in the MS method any earlier, but in the schemes I recommend, you finish sooner and the file is available sooner.

There’s difference between something that periodically performs an action and one that executes only upon some system trigger like getting a “disk full” message. And if I ever get a “disk full” message, the cleaning options won’t help because there’s nothing to delete (I don’t use a recycle bin). In fact that’s a typical MS way of handling things – not checking to see if the routine they propose will do anything useful before prompting the user, like this:

“Do you want to delete unused files to gain space? (Amount of space you will gain = NONE)” :rolleyes:


  • Only if the routine is efficiently written, so that pretty much excludes Microsoft. (OK, OK, I have very little admiration for MS’s technical skills, so sue me.) For example, their delete routine for IE temp files or cookies would win a prize if they gave them out for the slowest in computerdom. Any hacker could write one a thousand times faster, and they have.

Because I haven’t the first clue about cloning. Guy2 recommended some stuff and then left me high-and-dry. I have no idea what I’m doing, which is why I’ve been asking questions. I’d love to have someone with solid experience on this come over and walk me through it, but since Guy2 bailed I don’t know anyone who can.