Tagged Questions
3
votes
2answers
3k views
Java file locking and Windows - the lock isn't “absolute”?
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 code ...
1
vote
3answers
269 views
Does the following java code guarantee and exclusive lock on an unopened file in Windows?
Does the following java code guarantee and exclusive lock on an unopened file in Windows?
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import ...
1
vote
2answers
172 views
Windows Java File lock when referencing existing file in constructor?
Suppose I do the following in java for a process that stays open:
import java.io.File;
import java.util.Date;
public class LogHolder {
public static void main(String[] args) {
File file1 ...
0
votes
0answers
82 views
Schedule a file replace in the next system boot time.. windows xp
I am running a 32-bit windows xp machine on my computer.... recently i have found that an error pops up occasionally showing that Dr Watson Postmortem Debugger has crashed and needs to close. All the ...