修改Windows主机文件

时间:2015-11-01 10:18:15

标签: c# windows text-files

我希望在C:\Windows\System32\drivers\etc

编辑主机文件

因此,每次启动程序时,它都会检查我要添加的文本(123.123.123.123 download.talesrunner.com),如果它没有写入hosts文件,则会添加它并继续运行代码,如果是它跳过并且不添加123.123.123.123 download.talesrunner.com并继续运行代码。

所以我希望这样做

这是代码:

var hostfile = "";
Console.ForegroundColor = ConsoleColor.Red;
var OSInfo = Environment.OSVersion;
if (OSInfo.Platform == PlatformID.Win32NT)
{
    //is windows NT
    HOSTFILE = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Windows), @"system32\drivers\etc\hosts");
}
else
{
    //is no windows NT
    HOSTFILE = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Windows), "hosts");
}
Console.WriteLine(HOSTFILE);
IPHostEntry host = Dns.GetHostEntry(Dns.GetHostName());
var myIP = host.AddressList.FirstOrDefault(ip => ip.AddressFamily == AddressFamily.InterNetwork).ToString();
File.AppendAllLines(HOSTFILE, new[] {string.Format("123.123.123.123 download.talesrunner.com", myIP) });    
Console.ReadLine();
InitializeComponent();

2 个答案:

答案 0 :(得分:1)

你的问题就在这一行:

File.AppendAllLines(hostfile, new[] { string.Format("123.123.123.123 download.talesrunner.com", myIP) });

更具体地说,这部分内容因为string.Format中的一个安置器丢失而无效:

 new[] { string.Format("123.123.123.123 download.talesrunner.com", myIP) }

如果您真的只想将123.123.123.123 download.talesrunner.com添加到文件中,如果它不存在,我会这样做:

const string tales = "123.123.123.123 download.talesrunner.com";
if (!File.ReadAllLines(hostfile).Contains(tales))
{
     File.AppendAllLines(hostfile, new String[] { tales });
}

整个代码:

var OSInfo = Environment.OSVersion;
string pathpart = "hosts";
if (OSInfo.Platform == PlatformID.Win32NT)
{
    //is windows NT
    pathpart = "system32\\drivers\\etc\\hosts";
}
string hostfile = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Windows), pathpart);

const string tales = "123.123.123.123 download.talesrunner.com";
if (!File.ReadAllLines(hostfile).Contains(tales))
{
    File.AppendAllLines(hostfile, new String[] { tales });
}

不要忘记确保您的程序以管理员权限运行,否则您将unauthorized access exception获得.net

第二次修改,如果123.123.123.123已经在具有不同IP的文件中,则将其更改为download.talesrunner.com

    const string tales = "123.123.123.123 download.talesrunner.com";
    string[] lines = File.ReadAllLines(hostfile);

    if (lines.Any(s => s.Contains("download.talesrunner.com")))
    {
        for (int i = 0; i < lines.Length; i++)
        {
             if (lines[i].Contains("download.talesrunner.com"))
                 lines[i] = tales;
        }
        File.WriteAllLines(hostfile, lines);
    }
    else if (!lines.Contains(tales))
    {
        File.AppendAllLines(hostfile, new String[] { tales });
    }

答案 1 :(得分:1)

如果您只想在没有阅读主机文件的情况下存在您的条目,则需要更改您的Dns查询

IPHostEntry host = Dns.GetHostEntry("download.talesrunner.com");
if (host != null)
{
    bool hasEntry = false;
    foreach (IPAddress ip in host.AddressList)
    {
        if (ip.ToString() == "123.123.123.123")
        {
            hasEntry = true;
            break;
        }
    }
    if(!hasEntry)
        File.AppendAllLines(..., 
}

然后编写条目的代码似乎不正确。 hosts文件中的条目由一个IP地址和一系列由空格或制表符分隔的主机名组成,如果你想将每个调用重定向到&#34; download.talesrunner.com&#34;到IP地址&#34; 123.123.123.123&#34;和你的IP地址然后你需要添加

string[] entry = new string[] 
         { "123.123.123.123 download.talesrunner.com " + MyIp };
File.AppendAllLines(HOSTFILE, entry);