Eine kleine Methode, mit der man abfragen kann, ob eine Datei beschreibbar ist. Damit kann man unter anderem raus finden, ob die Datei im Zugriff ist.
public static bool IsFileWritable(string path)
{
try
{
if (!File.Exists(path))
{
return true;
}
using (System.IO.FileStream stream = File.OpenWrite(path))
{
stream.Close();
}
return true;
}
catch (Exception)
{
return false;
}
}
8 Kommentare zum Snippet