I need to write a custom batch File renamer. I've got the bulk of it done except I can't figure out how to check if a file is already open. I'm just using the java.io.File package and there is a canWrite() method but that doesn't seem to test if the file is in use by another program. Any ideas on how I can make this work?
|
|
Using the Apache Commons IO library...
|
|||
|
|
|
(The Q&A is about how to deal with Windows "open file" locks ... not how implement this kind of locking portably.) This whole issue is fraught with portability issues and race conditions:
A simpler and (probably) more robust solution is to just try the rename (or whatever it is you are trying to do) and diagnose the return value and / or any Java exceptions that arise due to opened files. Notes:
|
|||||||||
|
|
Your best bet is to set an exclusive lock on the file. If file is open by other processes, you will get an exception. For example,
|
|||||||||
|
|
@Stephen C Rename would not fail on an open file on most file systems on Unix. Files can be renamed or deleted from a directory and open file handles will still be valid and still be used to read and write to the file. |
|||||||
|
|
I don't think you'll ever get a definitive solution for this, the operating system isn't necessarily going to tell you if the file is open or not. You might get some mileage out of |
||||
|
|
|||
|
|