5
votes
2answers
409 views
When using Java’s FileLock, is it ok to let close() to automatically do a lock.release()?
As most should know close() also closes any streams uses.
This allows the follow code:
BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(...)));
...
br.close();
This …
4
votes
6answers
369 views
how to best wait for a filelock to release
I have an application where i sometimes need to read from file being written to and as a result being locked. As I have understood from other questions i should catch the IOException and retry until i …
2
votes
1answer
292 views
Java file locking and Windows - the lock isn’t “absolute”?
Hi,
I'm trying to lock a file with Java in Windows environment with FileLock and I got an issue :
after I lock the file it can still be accessed by other processes at least on some level.
Example …
2
votes
2answers
236 views
How to prevent file from being overridden when reading and processing it with Java?
Hi,
I'd need to read and process somewhat large file with Java and I'd like to know, if there is some sensible way to protect the file that it wouldn't be overwritten by other processes while I'm …
2
votes
3answers
192 views
How to find out what processes have folder or file locked?
How do you go about querying running processes to find out what folders or files they have locked? (i.e. you go to eject a drive and you're told that it can't be ejected because it's in use)
I'd like …
1
vote
1answer
35 views
file lock leases via NFS v4 in C
does anybody know how to use the fancy file locking features of NFS v4? (described in e.g. About the NFS protocol (scroll down)). supposedly NFS v4 supports file lock leasing with a 45 second …
1
vote
1answer
108 views
Does a StreamReader lock a text file whilst it is in use? Can I prevent this?
Does a StreamReader lock a text file whilst it is reading it?
If it does, can I force the StreamReader to work in a "read-only" or "non locking" mode?
My workaround would be to copy the file to a …
0
votes
1answer
128 views
How do I get WPF’s DocumentViewer to release its file lock on the source XPS Document?
After showing an XPS file in the WPF DocumentViewer, and closing the DocumentViewer instance, the XPS file is locked and I cannot delete it. I need to release the lock on the XPS file so I can delete …
0
votes
2answers
148 views
Is there a way to delete an output file in a post-build event.
I'm trying to run a post-build batch file on a .NET build that encrypts an output file, deletes the original and then renames the encrypted version to the original output filename. i.e.:
Build A, …
