使用WMI从远程计算机目录获取文件名

时间:2011-03-02 12:38:37

标签: c#

我想使用WMI获取位于远程计算机C \ Windows \ Name目录中的文件名。或使用WMI计算远程计算机C \ Windows \ Name目录中的文件数。

此致 M.Channabasappa

1 个答案:

答案 0 :(得分:-1)

你必须使用WMI,你能做这样的事吗?

    var machines = new List<String>;
    machines.Add("pc1");
    machines.Add("pc1");

    foreach (var machine in machines)
    {
    var dir = new System.IO.DirectoryInfo(string.Format("\\{0}\Windows\",machine));                
        foreach (var path in dir.GetDirectories)
        {
            Console.WriteLine(path);
        }
   }