我想为网站添加网站快捷方式:http ://www.google.com在用户程序中(开始->所有程序)在窗口窗体 C# 中,同时我们安装我们的软件设置,它像在用户程序中一样安装:-
演示(所有程序中的文件夹)
- 演示软件快捷方式
- 网站链接
提前致谢
我想为网站添加网站快捷方式:http ://www.google.com在用户程序中(开始->所有程序)在窗口窗体 C# 中,同时我们安装我们的软件设置,它像在用户程序中一样安装:-
演示(所有程序中的文件夹)
- 演示软件快捷方式
- 网站链接
提前致谢
您没有指定创建它的方式或内容。对于完全手动的方式
string fullURLYouWant = "http://www.google.com/";
using (StreamWriter writer = new StreamWriter(yourPath + "\\" + yourShortCutFileName + ".url"))
{
writer.WriteLine("[InternetShortcut]");
writer.WriteLine("URL=" + fullURLYouWant);
writer.WriteLine("IconIndex=0");
writer.WriteLine("IconFile=" + iconFileForYourUrl);
writer.Flush();
}