Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How can I delete a file that is in use by another process?

I have the following c# code but it throws an exception on the call to the Delete method:

var dir = new DirectoryInfo(@"C:\mydirectory\");
dir.Delete(true);

The following exception is thrown:

The process cannot access the file 'C:\mydirectory' because it is being used by another process.

Is there any way to force it to delete this directory even though it's being used by another process?

share|improve this question
Check this question: stackoverflow.com/questions/5232647/… – kmatyaszek Oct 10 '12 at 16:18

marked as duplicate by J. Steen, Larsenal, Bo Persson, vstm, BNL Oct 10 '12 at 18:12

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 7 down vote accepted

no, not without stopping the other process

share|improve this answer

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