在我的。NET 2.0应用程序,我需要检查是否存在足够的权限来创建和写入文件到一个目录。为此,我使用以下函数尝试创建一个文件并向其写入一个字节,然后删除它本身以测试权限是否存在。
我认为最好的检查方法是实际尝试并执行,捕捉任何发生的异常。不过,我对一般的 Exception catch 并不是特别满意,那么有没有更好的或者更容易被接受的方法来实现这一点呢?
private const string TEMP_FILE = "\\tempFile.tmp";
/// <summary>
/// Checks the ability to create and write to a file in the supplied directory.
/// </summary>
/// <param name="directory">String representing the directory path to check.</param>
/// <returns>True if successful; otherwise false.</returns>
private static bool CheckDirectoryAccess(string directory)
{
bool success = false;
string fullPath = directory + TEMP_FILE;
if (Directory.Exists(directory))
{
try
{
using (FileStream fs = new FileStream(fullPath, FileMode.CreateNew,
FileAccess.Write))
{
fs.WriteByte(0xff);
}
if (File.Exists(fullPath))
{
File.Delete(fullPath);
success = true;
}
}
catch (Exception)
{
success = false;
}
}