Tagged Questions

33
votes
7answers
2k views

Locking Executing Files: Windows does, Linux doesn't. Why?

I noticed when a file is executed on Windows (.exe or .dll), it is locked and cannot be deleted, moved or modified. Linux, on the other hand, does not lock executing files and you can delete, move, ...
17
votes
13answers
61k views

What is the best WebDAV client for Windows?

The support of locking will be preferred.
9
votes
7answers
2k views

Reading interlocked variables

Assume: A. C++ under WIN32. B. A properly aligned volatile integer incremented and decremented using InterlockedIncrement() and InterlockedDecrement(). __declspec (align(8)) volatile LONG ...
8
votes
7answers
13k views

Overcoming “It is being used by another person or program.”

Is there a way to unlock Windows files without downloading a utility? I have a few files on my Windows XP C: drive that are very old and very useless. When I try to delete these files I get the ...
6
votes
3answers
3k views

Command-line tool for finding out who is locking a file

I would like to know who is locking a file (win32). I know about WhoLockMe, but I would like a command-line tool which does more or less the same thing. I also looked at this question, but it seems ...
5
votes
1answer
153 views

Graceful File Reading without Locking

Whiteboard Overview The images below are 1000 x 750 px, ~130 kB JPEGs hosted on ImageShack. Internal Global Additional Information I should mention that each user (of the client boxes) will be ...
5
votes
3answers
3k views

Re-assign/override hotkey (Win + L) to lock windows

Is it possible to re-assign the Win + L hotkey to another executable/shortcut? Use-case - I would like to switch off the monitor of my laptop as soon as it is locked. I know of a executable which can ...
4
votes
5answers
305 views

Why do libraries implement their own basic locks on windows?

Windows provides a number of objects useful for synchronising threads, such as event (with SetEvent and WaitForSingleObject), mutexes and critical sections. Personally I have always used them, ...
4
votes
5answers
7k views

Find out who is locking a file on a network share

I want to known who is locking a file on a network share. Here is the problem : the network share is on a NAS, so I can't log on. I need a tool to find out remotely who is locking the file. It is not ...
4
votes
4answers
3k views

Releasing Windows file share locks

This problem crops up every now and then at work. Our build machine can have it's files accessed via a normal windows file share. If someone browses a folder remotely on the machine, and leaves the ...
4
votes
1answer
2k views

Run a script when either locking or unlocking Windows XP

I have a Windows XP machine and a Linux machine running Ubuntu. I share the keyboard/mouse from the Windows machine via Synergy. What I would like to do is lock/unlock the Linux machine whenever I ...
3
votes
2answers
352 views

How do I tail a log file without locking in perl

This is how I am doing it right now but it locks the file. #!/usr/bin/perl use Env qw( $USERNAME ); use File::Tail; use strict; use warnings; my $file = $ARGV[0]; print "$file\n"; my $fileTail = ...
3
votes
3answers
1k views

Python: Lock directory access under windows

I'd like to be able to lock directory access under windows. The following code work greatly with file or directory under POSIX system: def flock(fd, blocking=False, exclusive=False): if ...
2
votes
2answers
40 views

How to see lock messages on TortoiseSVN

I can write a message when placing a lock on a file, using TortoiseSVN. I can then use the Repository Browser to see that the file is locked. It even shows a column with the programmer who locked ...
2
votes
3answers
213 views

Can I tell if another process is in the process of creating a file?

I'm writing a Windows service to process files created by another process over which I have no control. These files could potentially be very large (hundreds of megabytes). I need to process and then ...
2
votes
3answers
502 views

Temporary file, single instance lock, and process kill (Java)

I'm currently using a temp folder for my Java application to create a lock so that only one instance can be running at a time. This lock file MUST be deleted when the program exits. This is fine, ...
2
votes
3answers
430 views

Can address space be recycled for multiple calls to MapViewOfFileEx without chance of failure?

Consider a complex, memory hungry, multi threaded application running within a 32bit address space on windows XP. Certain operations require n large buffers of fixed size, where only one buffer needs ...
1
vote
1answer
32 views

lockfileex doesn't stop create_always from erasing the file

in one process, i called createfile with GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, OPEN_ALWAYS, and FILE_ATTRIBUTE_NORMAL as the params. then i called LockFileEx on the whole ...
1
vote
2answers
55 views

try to lock in Windows

in pthread library it is possible to find non blocking function: int pthread_mutex_trylock(pthread_mutex_t *mutex); can I find something similar in Windows? thanks in advance
1
vote
1answer
91 views

Increasing number of semaphore handles

I have the following problem. In one of the libraries I noticed increasing number of events and semaphore handles. The only synchronization primitive I'm using is CriticalSection. What can be the ...
1
vote
2answers
305 views

Can a batch file execution step through sequence without completing a java process?

Does a batch file execute processes in sequence only if the previous step has completed and released all file/process locks? Suppose I have the following cmd file (mybatchfile.cmd) echo. |TIME java ...
1
vote
1answer
919 views

Is it possible to programatically find out what process is locking a file across a network

I have a file on a Windows 2003 server which is locked by a process running on another Windows 2003 server. Is it possible to find out which process on which machine is locking this resource. I ...
0
votes
0answers
6 views

Need a clue about how to do OnTop Browser Screen for desk reception register

i have a website that is shown in a screen in the company's reception desk. The website allow user to sign up his name via html form. the website and the HTML form is already exists, the question is ...
0
votes
0answers
88 views

Windows 7 Lockdown Software [closed]

I am developing an application for a customer in WPF. I need a 3rd party software to run next to my application, that locks down windows, so that users can't exit the program using any key ...
0
votes
1answer
432 views

C File Locking behavior on windows and Linux

I was looking into below examples for understanding files locking on windows and linux. The program 1 is working on both windows and linux with gcc. But the second one is only working on Linux. ...
0
votes
2answers
327 views

Detecting if Windows Login Screen is visible to user in VB.NET

Hey StackOverflow VB.NET members, After running the following code (which locks the computer), what code must I be applying to see if the user has successfully logged into the computer and that "Lock ...
0
votes
2answers
141 views

How do I install a read-only lock on a file in Windows using C

I need to create a read-only lock on a certain file in Windows, in C. The lockf function is completely useless, as it creates an exclusive lock. I need to protect the file from writes, but multiple ...
0
votes
2answers
190 views

Is there a way to lock up a directory with Java?

My app creates a directory(file folder) on C:/ drive, since I don't want to expose all the data in it, and I don't want to encrypt all files in it, I wonder if there is a way to lock the folder up, so ...
0
votes
1answer
112 views

How to detect a directory is in use on Win32?

I need a programmatic way to know if a directory (as opposed to a file) is in use, for example because it is open on explorer or a CMD prompt. If the directory is in use, then it cannot be deleted. ...
0
votes
2answers
3k views

run command/script when lock/unlock windows station?

I have Windows 7 pro at work. my problem is i keep on forgetting to clock in/clock out (using the intranet timesheet system). is there a way to run a script or command to automatically open the ...
0
votes
4answers
649 views

Non-intrusively unlock file on Windows

Is there a way to unlock a file on Windows with a Python script? The file is exclusively locked by another process. I need a solution without killing or interupting the locking process. I already had ...