vote up 1 vote down star

Is there a programatic way from java to force a file deletion on windows even if the file is locked by some process? I cannot kill the process that locks the file.

flag

25% accept rate

3 Answers

vote up 2 vote down

Use Unlocker. Call it from Java as an external process.

link|flag
vote up 2 vote down

I am not an expert on windows, but I do not know of a way in OR OUT of Java to reliably force the deletion of a file that is currently open to a process while the process continues to run.

link|flag
vote up 4 vote down

you can go through JNI. But the whole point of locking was NOT to allow for deletion from another process.

So, unless you're running Windows 9x, this might be impossible to do.

That said, if you're aware of a way to do it using WIN32, then you might be able to do it in java using JNI.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.