在C#中最简单的方法来确定应用程序是否从网络驱动器运行?

时间:2011-12-26 07:06:28

标签: c# .net network-drive

我想以编程方式查明我的应用程序是否从网络驱动器运行。这样做最简单的方法是什么?它应该支持UNC路径(\\127.0.0.1\d$)和映射网络驱动器(Z :)。

6 个答案:

答案 0 :(得分:21)

这适用于映射驱动器的情况。您可以使用DriveInfo类来确定驱动器a是否是网络驱动器。

DriveInfo info = new DriveInfo("Z");
if (info.DriveType == DriveType.Network)
{
    // Running from network
}

完整方法和示例代码。

public static bool IsRunningFromNetwork(string rootPath)
{
    try
    {
        System.IO.DriveInfo info = new DriveInfo(rootPath);
        if (info.DriveType == DriveType.Network)
        {
            return true;
        }
        return false;
    }
    catch
    {
        try
        {
            Uri uri = new Uri(rootPath);
            return uri.IsUnc;
        }
        catch
        {
            return false;
        }
    }
}

static void Main(string[] args) 
{
    Console.WriteLine(IsRunningFromNetwork(System.IO.Path.GetPathRoot(AppDomain.CurrentDomain.BaseDirectory)));    }

答案 1 :(得分:4)

if (new DriveInfo(Application.StartupPath).DriveType == DriveType.Network)
{    
    // here   
}

答案 2 :(得分:2)

这是我目前的做法,但感觉应该有更好的方法。

private bool IsRunningFromNetworkDrive()
    {
        var dir = AppDomain.CurrentDomain.BaseDirectory;
        var driveLetter = dir.First();
        if (!Char.IsLetter(driveLetter))
            return true;
        if (new DriveInfo(driveLetter.ToString()).DriveType == DriveType.Network)
            return true;
        return false;
    }

答案 3 :(得分:1)

如果使用UNC路径非常简单 - 检查UNC中的主机名并测试它是localhost(127.0.0.1,:: 1,hostname,hostname.domain.local,工作站的ip-addresses)。

如果路径不是UNC - 从路径中提取驱动器号并测试DriveInfo类的类型

答案 4 :(得分:0)

DriveInfo m = DriveInfo.GetDrives().Where(p => p.DriveType == DriveType.Network).FirstOrDefault();
if (m != null)
{
    //do stuff
}
else
{
    //do stuff
}

答案 5 :(得分:0)

我重新安排了dotnetstep的解决方案,这在我看来更好,因为它在传递有效路径时避免异常,并且如果传递了错误的路径则抛出异常,这不允许假设为true或者是假的。

//----------------------------------------------------------------------------------------------------
/// <summary>Gets a boolean indicating whether the specified path is a local path or a network path.</summary>
/// <param name="path">Path to check</param>
/// <returns>Returns a boolean indicating whether the specified path is a local path or a network path.</returns>
public static Boolean IsNetworkPath(String path) {
  Uri uri = new Uri(path);
  if (uri.IsUnc) {
    return true;
  }
  DriveInfo info = new DriveInfo(path);
  if (info.DriveType == DriveType.Network) {
    return true;
  }
  return false;
}

测试:

//----------------------------------------------------------------------------------------------------
/// <summary>A test for IsNetworkPath</summary>
[TestMethod()]
public void IsNetworkPathTest() {
  String s1 = @"\\Test"; // unc
  String s2 = @"C:\Program Files"; // local
  String s3 = @"S:\";  // mapped
  String s4 = "ljöasdf"; // invalid

  Assert.IsTrue(RPath.IsNetworkPath(s1));
  Assert.IsFalse(RPath.IsNetworkPath(s2));
  Assert.IsTrue(RPath.IsNetworkPath(s3));
  try {
    RPath.IsNetworkPath(s4);
    Assert.Fail();
  }
  catch {}
}