使用文本文件中的信息以编程方式在Chrome中打开多个标签

时间:2016-04-10 12:32:21

标签: c# google-chrome

我有一个包含X行数的txt文件。 我想阅读所有的行,然后打开一个网址:http://www.mywebsite.com/? +我的行的价值。 我怎样才能做到这一点? Chrome会打开一个新标签,其中包含我的网址+文字行的值。我正在使用System.Diagnostic.

打开Chrome

我有一个问题,因为chrome打开X标签...我想为我的txt文件中的每一行打开一个标签... 代码:

int counter = 0;
string line;
System.IO.StreamReader file =
   new System.IO.StreamReader(Environment.GetFolderPath(Environment.SpecialFolder.Personal) + @"\logs.txt");
while ((line = file.ReadLine()) != null)
{
    Process.Start(@"C:\Program Files\Google\Chrome\Application\chrome.exe", "http://www.example.com/?" + line);            
}
file.Close();

0 个答案:

没有答案