我想替换 Google Chrome 的 Preferences 文件中的一行以更改当前主页。
在我的计算机中,我将http://www.google.com定义为默认主页,因此我需要替换(在 Preferences 文件中)以下行:
"homepage": "http://www.google.com/",
用。。。来代替 :
"homepage": "http://www.MyWebsite.com/",
所以为了做到这一点,我使用了一个看起来像这样的代码:
string PreferencesFile = File.ReadAllText(file);
PreferencesFile.Replace(FirstLine,SecondLine);
File.WriteAllText(file,PreferencesFile);
但问题是,在每台计算机中,都有不同的主页。
如何替换下面的行
"homepage": "http://www.what-ever-site-is-here.com/",
和
"homepage": "http://www.MyWebsite.com/",
哪些值应该受到 FirstLine 和 SecondLine 变量的影响?