up vote 1 down vote favorite
share [g+] share [fb]

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

link|improve this question

26% accept rate
feedback

2 Answers

up vote 6 down vote accepted

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|improve this answer
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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