Tagged Questions
The file-locking tag has no wiki summary.
60
votes
11answers
41k views
Is there a way to check if a file is in use?
I'm writing a program in C# that needs to repeatedly access 1 image file. Most of the time it works, but if my computer's running fast, it will try to access the file before it's been saved back to ...
41
votes
5answers
17k views
How do I find out which process is locking a file using .NET?
I've seen several of answers about using Handle or Process Monitor, but I would like to be able to find out in my own code (C#)
which process is locking a file.
I have a nasty feeling that I'm ...
21
votes
7answers
15k views
How do I delete a file which is locked by another process in C#?
I'm looking for a way to delete a file which is locked by another process using C#. I suspect the method must be able to find which process is locking the file (perhaps by tracking the handles, ...
13
votes
2answers
2k views
File.Copy locks source file after completion
We are trying to copy a file from a server, down to a local machine in a .NET 2.0 application (C#), but keep having the source file unnecessarily locked. We suspect it is something configured on the ...
13
votes
7answers
12k views
Locking a file in Python
I need to lock a file for writing in Python. It will be accessed from multiple Python processes at once. I have found some solutions online, but most fail for my purposes as they are often only Unix ...
10
votes
6answers
8k views
How can I unlock a file that is locked by a process in .NET
I want my application to clean all the temp files it used, the problem is that not all the temp files are under my control, so I just want to "brutally" unlock them in order to delete them ...
7
votes
3answers
355 views
File locked by which process?
Is there a way in .Net to find out exactly which process has locked a file?
EDIT: I'm doing this because I want to let my user know that they can't modify/open the file, because at the moment, ...
5
votes
4answers
141 views
What does _locking() really do?
Looking for answer of this question I found function _locking(). There tells that it Locks or unlocks bytes of a file (actually I can't understand what does this sentence really mean). If someone have ...
5
votes
2answers
182 views
Can I use FileStream to implement a file lock?
Can I use the FileStream constructor to ensure only one process accesses a file at a time? Will the following code work?
public static IDisposable AcquireFileLock() {
IDisposable lockObj;
do ...
5
votes
4answers
170 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 ...
4
votes
3answers
96 views
Is there a way to create a file that is locked at the point of creation, in Perl?
I need to create a file that is locked against reads, at the point of creation, so that other processes that may go looking for this file do not start reading it, before it has been completely ...
4
votes
1answer
239 views
Locking behaviour is different via network shares
I have been trying to lock a file so that other cloned services cannot access the file. I then read the file, and then move the file when finished. The Move is allowed by using FileShare.Delete.
...
3
votes
2answers
54 views
What is the order in which a POSIX system clears the file locks that were not unlocked cleanly?
The POSIX specification for fcntl() states:
All locks associated with a file for a given process shall be removed when a file descriptor for that file is closed by that process or the process ...
3
votes
1answer
208 views
FileLock changes between java 5 and java 6
In Java 1.5, java.nio.channels.FileLock did not check to see files that were already locked. Referenced Here
The snippet states:
The java.nio.channels.FileLock class checks for files already ...
3
votes
3answers
75 views
Which debugging tool (if any) allows me to identify the thread that is holding a lock on a file?
I'm debugging a test that periodically raises an IOException, noting that a file can not be deleted because it is being used by another process. I suspect that the process is indeed my test harness, ...
3
votes
5answers
229 views
How can I lock a file in .net so that only my app can access it?
I read queries regarding file locking but either they refer to multiple file access problem or something else.Ususal response to this would be lock to the file using FileStream.Lock,using ...
3
votes
1answer
68 views
how to write or what is the concept behind the file unlocker program
Recently i was trying to delete a file thinking that i had closed the program which is manipulating the file but it did not delete because the program was still running. I misunderstood that file as ...
3
votes
4answers
110 views
How to ensure that when my process is operating on a file, no other process tries to write to it or delete it?
If my process is trying to read from a file, then how do I ensure from my code (C Language) that no other process either writes to it or deletes it (include system commands for deleting the file)?
...
3
votes
1answer
170 views
VB6 IDE Is Locking The Loaded Project's DLL
I'm responsible for maintaining legacy VB6 code, and have encountered an annoying problem with regard to the locking of a project's COM DLL. (We'll call it MyProject and MyProject.dll)
When I load ...
3
votes
2answers
231 views
Collaborative Code Editing
I work for a small web development company (6 people) and we've been in the market for a new code editor/development environment for quite some time.
Currently, we're using Dreamweaver's (CS3) ...
3
votes
1answer
771 views
PHP check if file locked with flock()?
Will fopen() fail if a file exists, but is currently locked with LOCK_EX?
Or do I have to open it, and then try and set a lock, in order to determine if one already exists?
I've also read that ...
3
votes
2answers
2k 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 ...
3
votes
1answer
172 views
How to find out which thread is locking a file in java?
I'm trying to delete a file that another thread within my program has previously worked with.
I'm unable to delete the file but I'm not sure how to figure out which thread may be using the file.
So ...
3
votes
1answer
240 views
What happens in 'assembly purgatory'?
When a .NET assembly is deployed to the GAC and the destination file is locked, Windows holds it in what I can best guess is some sort of 'assembly purgatory' - c:\windows\assembly\temp.
Using ...
3
votes
8answers
955 views
Log File Monitor
Is is possible to open a text file and read the contents while another application is updating the file, in such a way that it does not cause a lock conflict?
I need to monitor a log file from one ...
3
votes
3answers
1k views
Lock a file while writing it on the disk
I have two independant threads F1 and F2 (to be precise, two instances of java.util.concurrent.FutureTask) that are running in parallel.
F1 do some processing, and then copy the result in a XML file. ...
3
votes
5answers
2k views
TFS won't allow folder rename, claims that there are locks
In visual studio 2008, I want to rename a folder due to a typo in the name.
I rename it in the solution structure. The folder and .CSProj files are now checked out, and I check in.
TFS comes back ...
3
votes
4answers
130 views
How to let humans and programs access the same file without stepping on each others' toes
Suppose I have a file, urls.txt, that contains a list of URLs I'm monitoring. My monitoring script edits that file occasionally, say, to indicate whether each URL is reachable. I'd like to also ...
2
votes
3answers
132 views
How lock a file in windows using c++?
How can I lock a file in windows to only current thread (no other threads from same process and no other processes) can access (read/write) the file?
If it is possible please tell me some fcntl-like ...
2
votes
2answers
195 views
store image in arrayList
Here is what I am trying to do: Thread B will download some images and store those images in a shared resource: Static ArrayList IMBuffer; thread A will take an image from IMBuffer and do something ...
2
votes
2answers
176 views
Reading file right after it has been written I get all zeros (.net)
I have a program that needs to load files from a directory as soon as they are written. I got the FileSystemWatcher to notify me of changes to the directory. Rather than check the event for what ...
2
votes
4answers
743 views
Delphi7 - How can i copy a file that is being written to
I have an application that logs information to a daily text file every second on a master PC. A Slave PC on the network using the same application would like to copy this text file to its local drive. ...
2
votes
2answers
220 views
Is tellp safe to use with file locking
The general strategy for boost file locking (sharable and scoped file_locks), and file locking in general I think, is this:
open
lock
operate on file contents
unlock
close the file
However, I will ...
2
votes
1answer
452 views
Log File Locking Issue in C#
I have a windows service that writes out log file entries to an XML log file. I maintain a handle to the log file while the service is operational, and close, flush and dispose of it when the service ...
2
votes
3answers
1k views
Is std::ifstream thread-safe & lock-free?
I intend to perform opening for reading a single file from many threads using std::ifstream. My concern is if std::ifstream is thread-safe & lock-free?
More details:
I use g++ 4.4 on Ubuntu ...
2
votes
2answers
810 views
How do I check the exit code of a command executed by flock?
Greetings all. I'm setting up a cron job to execute a bash script, and I'm worried that the next one may start before the previous one ends. A little googling reveals that a popular way to address ...
2
votes
3answers
2k views
How do I use the linux flock command to prevent another root process from deleting a file?
I would like to prevent one of my root processes from deleting a certain file. So I came across the flock command, it seems to fit my need, but I didn't get its syntax.
If I only indicate a shared ...
2
votes
3answers
1k views
Forcing file deletion on Windows from Java
Is there a programatic way from java to force a file deletion on windows even if the file is locked by some process? I cannot kill the process that locks the file.
1
vote
1answer
45 views
How to avoid file deadlocks when PHP process/server crashes?
I am new to PHP. I understand I can use flock() to lock a file and avoid race conditions when two users reach the same php file adding content to the lockable file.
However, what happens if a php ...
1
vote
1answer
75 views
File Lock in Python [closed]
Possible Duplicate:
Locking a file in Python
I want acquire a lock on a file and prevent the writing of this file from other processes. which module and function should I use?
Thanks.
1
vote
1answer
46 views
Fetch a Unique Number from a file containing list of numbers concurrently
I have a list of unique numbers in a file. Whenever user of my sites makes a request i need to fetch a value from that list , such that no other user gets the same value. There could be many ...
1
vote
2answers
86 views
Access Violation when calling LockFileEx()
I have a FileMapping class that allows me to also lock a file for exclusive use by my process by using the Win32 API function LockFileEx().
bool FileMapping::lockFile(bool wait) {
if ...
1
vote
3answers
175 views
File.Open for read access denied on executing file in Windows
I have a problem with file permissions on executing files in Windows that seems to be solved after following a forum tip[1], but I cannot understand why. Maybe you guys can help.
I'm checking the ...
1
vote
3answers
533 views
Using java file locks within single JVM and across multiple JVMs
I guess I miss something, but I cannot understand how file locks work in Java. To be more exact - how it is implemented.
It seems I cannot acquire (even cannot attempt acquiring) two or more locks ...
1
vote
1answer
130 views
What CPAN module to use for nonblocking file locking with Perl
I want to make sure only one process at a time runs. So I want to make sure jobB doesn't run unless jobA is not running.
It would be great if it had some ability to retry the lock so I don't have ...
1
vote
2answers
159 views
Removing file locks in Windows and Java
I have a Java program that opens a file using the RandomAccessFile class.
I'd like to be able to rename that file while it is opened by Java. In Unix, this isn't a problem. Does anyone know how I can ...
1
vote
2answers
402 views
Deleting an Image that has been used by a WPF control
I would like to bind an Image to some kind of control an delete it later on.
path = @"c:\somePath\somePic.jpg"
FileInfo fi = new FileInfo(path);
Uri uri = new Uri(fi.FullName, UriKind.Absolute);
var ...
1
vote
2answers
23 views
One service appends to and another one truncates a file
I have a service that controls an RS-232 device and logs actions to a file. I am to write another service which will read the log file line by line and run some queries on a database then delete all ...
1
vote
3answers
360 views
File Unlocking and Deleting as single operation
Please note this is not duplicate of http://stackoverflow.com/questions/1910624/file-r-w-locking-and-unlink. (The difference - platform. Operations of files like locking and deletion have totally ...
1
vote
1answer
266 views
Locking and Updating a File Accordingly
Note: I have read other posts on how to lock and unlock a file. I didn't find anything special that I wasn't aware of. So I am gonna put my scenario here so that someone can give some suggestions out.
...