File locks are locks held by an application, preventing interference from other processes. Locks may be advisory (may be ignored by others), or mandatory, enforced by the operating system, depending on implementation.

learn more… | top users | synonyms

1
vote
4answers
1k views

C# - Lock file until browser is closed, user navigates away from page, or session expires

Is there any way to lock a file until a browser is closed, the user leaves the current page, or their session expires? I have a java app that reads annotations from a text file and lets a user modify ...
0
votes
3answers
512 views

Why one JVM get FileLock twice will throw OverlappingFileLockException?

Why get the FileLock twice in one JVM will throw OverlappingFileLockException? Why couldn't the second lock aquirement be blocked and get the lock when it released?
0
votes
3answers
141 views

Safest way to copy a file

I need to merg two PDF files. However sometimes a file might be locked up I wrote this code, but I'm wondering if it's not the smartest solution: private static int FILE_LOCKED_WAIT_PERIOD = ...
0
votes
2answers
73 views

How to update files in a site on IIS via the site?

Okay, so we have a CMS site in IIS, running on ASP.NET 4.0. The user wants to update some images on the site, but because they have been recently served up, IIS has a handle open to them, locking ...
5
votes
1answer
202 views

Does FileChannel tryLock() method checks for locks or just breaks them?

I have two processes that may access the same file concurently and wanted to implement file locking. The trouble seems to be that one process is written in java and the other in C and it is not clear ...
3
votes
1answer
108 views

File locking in Linux using c programme

I want to create one file from c programme and i want use bit long time in my c binary. but i want create file in such way that until my c programme finish processing file created and unlock it ...
2
votes
1answer
146 views

Java FileLock: How to Load Dynamic Library From Locked File?

I have an applet that retrieves a byte array from a backend server. This byte array contains a dynamic library (DLL or SO, depending on which OS the applet is running on), that must be written to disk ...
0
votes
1answer
57 views

Windows vs OSX FileLock OutputStreamWriter

I wrote a java application that accesses a file while other Processes in other VMs try to do the same. Therefore I use the FileLock class: FileOutputStream fos = new ...
0
votes
1answer
81 views

Having trouble releasing a Java FileLock

I haven't worked with nio much and I'm having some trouble with releasing a FileLock. Basically, in JVM-A I have a NON-SHARABLE write lock on a file which looks something like this: File lockfile = ...
0
votes
1answer
340 views

How to lock, text file open for reading?

I want lock my input text file, in my program, so if the next occurrence of program is run on the same file it crash (throws exception). I know that i can lock file with "java.nio.channels.FileLock" ...
0
votes
1answer
214 views

In Java What is the guaranteed way to get a FileLock from FileChannel while accessing a RandomAccessFile?

I am trying to use FileLock lock(long position, long size,boolean shared) in FileChannel object As per the javadoc it can throw OverlappingFileLockException. When I create a test program with 2 ...
1
vote
0answers
118 views

Will JAXB handle file locking for me?

I would like to make sure that no other process modifies the xml file while reading it. This is my code: final File file = new File(configFilePath); final FileChannel channel = new ...
1
vote
0answers
130 views

fcntl record lock works in multithreads?

I test multiprocess record lock with fcntl function, my current request needs to use record lock between threads. I tested it, but it doesnot work as thought, do you have any suggestion on ...
0
votes
0answers
97 views

Lock a file open through FTP?

I'd like to lock files that are open through FTP, so once a file is being edited (on a mounted FTP folder in OSX) no one else can: - save it (necessary) - open it (optional) Does anyone have any tips ...
0
votes
0answers
276 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 ...