i want to delete file on windows OS using java, how ever some time file may be in use by external process, how can i delete forcefully or by knowing which process use that and kill that process or any how, any code or way?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
You can call low level Windows routines via JNI (http://www.atwistedweb.com/java/jni.html) or JNA (http://jna.java.net/) But how about a more simple solution: Download Unlocker and run it with |
|||
|
|
|
Java doesn't have any built-in tools to find out what process opened specific file. This is OS-specific. You must run some external tools for that, but I don't know any Windows command-line tool allowing you to do that. |
|||||||||||||||
|