vote up 0 vote down star
1

I've got a method which performs a delete and create file. there are issues with the threads all trying to access the file at the same time.

How can i limit access to the file?

public static Save(string file)
{
  //1.Perform Delete
  //2.Perform Write 
}

Note that the method is static so is it possible to lock the process within the static method?

Cheers

flag

80% accept rate

3 Answers

vote up 4 vote down check
private static readonly object _syncRoot = new object();
public static void Save(string file)
{
    lock(_syncRoot) {
        //1.Perform Delete
        //2.Perform Write 
    }
}

Or you could use the MethodImplAttribute which puts a lock around the whole method body:

[MethodImpl(MethodImplOptions.Synchronized)]
public static void Save(string file)
{
    //1.Perform Delete
    //2.Perform Write 
}
link|flag
Beat me to it! The only thing I would do different is declare _syncRoot as readonly. – RichardOD Nov 3 at 9:28
+1 for MethodImplAttribute – Q8-coder Nov 3 at 9:29
@RichardOD, as you suggested I've added readonly. – Darin Dimitrov Nov 3 at 9:30
While this suggestion will work, it potentially introduces a lot of contention into a website. It is probably worth pointing this out in the answer, as if every single request to a page results in this being called, performance will suffer. – Rob Levine Nov 3 at 9:44
What will happen if the method threw an exception, will the lock automatically release? – Wololo Nov 3 at 9:50
show 1 more comment
vote up 0 vote down

Have a look at this thread which discusses the use of the lock statement.

link|flag
vote up 0 vote down

You will have to use a lock on a static object.

private static Object saveLock = new Object();

public static Save(string file)
{
   lock (saveLock )
   {
     //...
   }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.