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

0
votes
2answers
100 views

Can't build my service : Unable to copy file because it is being used by another process

I build a windows service in c# .net. I added Pre-Build and Post-Build event to automatically deploy my service on the build. But sometime I got this error : Unable to copy file ...
-1
votes
1answer
58 views

How to Lock folder pro-grammatically in android?

It is possible to Lock folder with password protected programmatically? http://developer.android provides File-lock but i want to Lock folder not a File. Android operating system is totally based on ...
0
votes
3answers
82 views

c windows multithread file lock

Is there, on Windows, any easy way to lock a file in an exclusive way (reading and writing for my software) in multithread C code? I've tried the LockFileEx but it works only between process and not ...
0
votes
1answer
80 views

How to use FileLock on android?

I think that we are able to lock files for exclusive access as i saw this link: http://developer.android.com/reference/java/nio/channels/FileLock.html I want to create a save/load a file both in a ...
0
votes
1answer
55 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
0answers
93 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 ...
5
votes
1answer
200 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 ...
2
votes
2answers
270 views

How wait and get lock on file

I want wait till other program releases lock on particular file, then I want to proceed to open that unlocked file. I came across many solutions, but none are useful, here is my code - File file = ...
0
votes
1answer
51 views

limit the number of children and descendants processes

I have to use fork() recursively, but limit the number of forked processes (including children and descendants) to (for example) 100. Considering this code snippet: void recursive(int n) { ...
0
votes
1answer
80 views

Locking a file across multiple nodes with common FS

We have a spring integration application which is running in a cluster on multiple nodes. A NFS drive is mounted across all nodes and is readable by all nodes. On NFS there is a folder which is being ...
2
votes
3answers
249 views

c# Image from file close connection

I display an image using c# in a pictureBox. Then I want to change the image's name. I can't because I get that the image is being used by another process. I open the image this way Image image1 = ...
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 ...
3
votes
1answer
105 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 ...
1
vote
2answers
311 views

Read external log file without creating file-lock

Trying to read a log file line-by-line (in Java). This log file is being written to simultaneously by another process (non-java program). I have 2 approaches - BufferedReader (BufferedReader br = ...
0
votes
1answer
78 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
103 views

Will shell script lock a file while writing content?

I have a shell script, That writes a content in to the file, #!/bin/bash SLEEP=1 FILE_PATH=${1} while true do ps aux wc -l > ${FILE_PATH} sleep ${SLEEP} done I have another PHP Script ...
0
votes
5answers
433 views

Avoid crashing when file is locked?

I am reading/writting to a file from 2 different applications, when the file is being read or written to, it will always be locked by app A or B and they both make use of FileShare.None. My issue is ...
4
votes
2answers
132 views

How to check FileLock without truncating file?

I recently added filelocks to my downloader asynctask: FileOutputStream file = new FileOutputStream(_outFile); file.getChannel().lock(); and after download completes, file.close() to release lock. ...
0
votes
1answer
93 views

Can't read or write from a locked file in Java

I've locked a file using a FileLock in Java, but now I can't read to or write from it. What do I do?
-1
votes
2answers
331 views

C# text file sharing scheme for multiple users

Instead of me writing from scratch a text file sharing windows form application, I thought I would simply ask if someone has a snippet (C#) or methodology that I could use? The application merely ...
1
vote
0answers
117 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 ...
3
votes
3answers
1k views

Unable to lock files on linux using java.nio.channels.FileLock

I was creating an application in java for which i want only one instance running. For this purpose i got the solution of creating a file and getting a lock over it until my application is running. I ...
2
votes
3answers
4k views

how to check in command line if given file or directory is locked, that it is used by a process?

I need to know that before any attempt to do anything with such file.
0
votes
1answer
337 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" ...
1
vote
2answers
217 views

NUnit won't release lock on custom class library dll … Unable to compile class library after running NUnit

I wrote a custom class library for NUnit unit tests. It created a dll file containing my .NET IL code in the {project root}\bin\Debug\ folder. Running NUnit unit tests in this class library works ...
0
votes
1answer
300 views

Locking `properties` file in java

I read this post. Can anybody tell me if the java.nio.FileLock.lock() works well with java.util.Properties class. Question: If I put the lock on the properties file what I read, does this lock the ...
1
vote
2answers
377 views

Why is the SMTP service locking the files for several hours?

We are currently using the SMTP service in IIS 6.0 to send mails. All incoming relay mails are monitored by another service which processes the relay mail and deletes/moves it. It works fine! We have ...
1
vote
0answers
129 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 ...
2
votes
1answer
143 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
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 ...
0
votes
3answers
2k views

Need help opening printer spool shadow file (.SHD) that is locked

I'm interested in some information inside a shadow file (.shd) located inside the windows print spooling directory "C:\Windows\System32\spool\PRINTERS". Every time a print job is started, a spool ...
1
vote
2answers
3k views

Using FileChannel to write any InputStream?

Can I write any InputStream into a FileChannel? I'm using java.nio.channels.FileChannel to open a file and lock it, then writing a InputStream to the output file. The InputStream may be opened by ...
0
votes
3answers
422 views

Unable to read from newly locked file

So I try to locked the file to read it, but I got IOException, any idea why? public static void main(String[] args){ File file = new File("C:\\dev\\harry\\data.txt"); FileReader fileReader = ...
8
votes
3answers
4k views

FileStream with locked file

I am wondering if it's possible to get a readonly FileStream to a locked file? I now get an exception when I try to read the locked file. using (FileStream stream = new FileStream("path", ...
7
votes
3answers
826 views

In Java, Is there a way to read a file when that file is locked by other thread?

So i used the following to create a lock on a file so that I can edit it exclusively: File file = new File(filename); channel = new RandomAccessFile(file, "rw").getChannel(); lock = ...
1
vote
1answer
300 views

Problem with Django send_mail “lock already in place. quitting.”

I am having an issue with send_mail in django. It has been working fine until I tried to change some Email settings to have it use an EMAIL_HOST_USER and EMAIL_HOST_PASSWORD. When I did that my test ...
2
votes
2answers
847 views

File lock not working as expected

I have a Thread-extending class that is supposed to run only one instance at a time (cross-process). In order to achieve that, I'm trying to use a file lock. Here are bits of my code: class ...
0
votes
3answers
507 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?
1
vote
3answers
561 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
286 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
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 ...
3
votes
2answers
1k views

Cannot delete an image file that is shown in a listview

In my listview I show thumbnails of small images in a certain folder. I setup the listview as follows: var imageList = new ImageList(); foreach (var fileInfo in dir.GetFiles()) { try { ...
5
votes
4answers
6k views

FileStream to save file then immediately unlock in .NET?

I have this code that saves a pdf file. FileStream fs = new FileStream(SaveLocation, FileMode.Create); fs.Write(result.DocumentBytes, 0, result.DocumentBytes.Length); fs.Flush(); fs.Close(); It ...
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 = ...
4
votes
1answer
2k views

Java: opening and reading from a file without locking it

I need to be able to mimic 'tail -f' with Java. I'm trying to read a log file as it's being written by another process, but when I open the file to read it, it locks the file and the other process ...
3
votes
1answer
1k views

Problem with Java file locking mechanism (FileLock etc)

I am creating a simple application for opening and editing xml files. These files are located in a local folder accessed by multiple instances of the application. What I want to do is lock each file ...
4
votes
2answers
959 views

.NET isolated storage file locking throws NRE

So I am trying to lock an isolated storage file in my C# client application, so that multiple copies of my application are not able to access it at the same time. I am using the following syntax: ...
5
votes
4answers
219 views

How can my Linux daemon know when a Windows program has stopped writing a file that I access through SAMBA?

I'm developing a system that interfaces with a USPS shipping package called Dazzle. Part of this system includes a monitoring daemon whose purpose is to take tab-separated value files, turn them into ...
7
votes
2answers
8k views

Java FileLock for Reading and Writing

I have a process that will be called rather frequently from cron to read a file that has certain move related commands in it. My process needs to read and write to this data file - and keep it locked ...
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 ...

1 2