vote up 1 vote down star
1

What is the quickest way to check that a file is in used via C# code?

flag

18% accept rate

2 Answers

vote up 6 vote down check

Something like this should work :

    public bool FileIsLocked(string fileName)
	{
		FileStream fs;
		try
		{
			fs = File.Open(fileName, FileMode.OpenOrCreate, FileAccess.Read, FileShare.None);
			fs.Dispose();
		}
		catch (IOException)
		{
			return true;
		}
		return false;
	}
link|flag
vote up 0 vote down

u can try to open this with deny other app access it.

When u get exception, u will know this file is used by other.

link|flag

Your Answer

Get an OpenID
or

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