Tagged Questions

10
votes
5answers
2k views

How do I find out which process is locking a file (C#)?

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 …
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. …
0
votes
3answers
581 views

Unlock a file with unlocker from a c# App?

I am trying to unlock a file from a C# program, using unlocker. In my UI, I put a button to unlock the file the app couldn't delete. When the user pushes the button, I want unlock …
0
votes
4answers
768 views

FileSystemWatcher.WaitForChanged returns, but there is still a lock on the file

I have a program that send a document to a pdf printer driver and that driver prints to a particular directory. After the print I want to attach the pdf to an e-mail (MailMessage) …
6
votes
5answers
2k 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 de …