Tagged Questions

0
votes
1answer
50 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 s …
0
votes
1answer
27 views

Prevent the access from copying a file when other resources are using it.

In my application, i have one exe file that will do some conversion on my videofiles in a directory, and also i have used cute ftp to transfer the files present in the directory to …
0
votes
2answers
143 views

Correctly destroying named System V semaphores

I'm using named System V semaphores to lock a file across all my apps on OSX and linux. Not prettiest of APIs by any definition. It seems to work, but I can't quite figure out how …
2
votes
1answer
87 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 …
6
votes
2answers
416 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 …
1
vote
1answer
290 views

How do I can linux flock command to prevent another root process deleting a file?

Hello there, I would like to prevent one of my root process from deleting a certaing file. So I came across the flock command, it seems to fit my need, but I didnt get its sintax. …
1
vote
1answer
74 views

Extra Process file locks

I have a .NET system where I need to allow files to be locked and unlocked across process boundaries. The model I plan to use is this: User generate a lock token Uses Locks a fil …
3
votes
5answers
362 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 …
2
votes
4answers
695 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. …
2
votes
3answers
448 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 r …
3
votes
4answers
116 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 …
2
votes
5answers
847 views

Locking a file in Python

Hello, 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 …
1
vote
3answers
621 views

Lock / Prevent edit of source files on Linux using C++

How can I programmatically lock/unlock, or otherwise prevent/enable editing, a source file on Linux using C++. I want to be able to lock source file so that if I open it in an edi …
1
vote
3answers
554 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.