我有这个代码:
private void GetHostsFile()
{
string Windows_95_98_Me = @"c:\windows\hosts";
string Windows_NT_2000_XP_Pro = @"c:\winnt\system32\drivers\etc\hosts";
string Windows_XP_Home = @"c:\windows\system32\drivers\etc\hosts";
string Windows8 = @"C:\windows\system32\drivers\etc\hosts";
string fileName = "hosts";
if (Directory.Exists(Windows_95_98_Me))
{
File.Copy(test1,test2, true);
}
}
我想将文件“主机”复制到新位置。但有时文件只能是 hosts 或 hosts.txt,所以我想涵盖所有选项并复制类似 host*.* 的内容
我怎样才能代替 test1 和 test2 呢?