9 个解决方案
#1
Process p = new Process();
p.StartInfo.FileName = "迅雷";
p.StartInfo.Arguments = "A.torrent";
p.Start();
#2
楼上添加了什么引用
#3
System.Diagnostics
#4
Process p = new Process();
p.StartInfo.FileName = "迅雷";
p.StartInfo.Arguments = @"C:\Documents and Settings\Administrator\桌面\201110161149576807.torrent";
p.Start();
报错,在Start()系统找不到指定的文件
p.StartInfo.FileName = "迅雷";
p.StartInfo.Arguments = @"C:\Documents and Settings\Administrator\桌面\201110161149576807.torrent";
p.Start();
报错,在Start()系统找不到指定的文件
#5
#6
大哥啊,你怎么就知道copy呢,好带也看看帮助
p.StartInfo.FileName = "迅雷";
把迅雷改为你的程序路径
p.StartInfo.FileName = "迅雷";
把迅雷改为你的程序路径
#7
#8
Process p = new Process();
p.StartInfo.FileName = @"C:\Program Files\Thunder Network\Thunder\Program\Thunder.exe";
p.StartInfo.Arguments = @"C:\Documents and Settings\Administrator\桌面\201110161149576807.torrent";
p.Start();
这个步骤只是打开了迅雷,没有同时用迅雷打开torrent文件
#9
1L 你还知道怎么修改该注册表来修改.mp4文件的打开方式吗?不是root新建.mp4/shell/commond,这个没用!
#1
Process p = new Process();
p.StartInfo.FileName = "迅雷";
p.StartInfo.Arguments = "A.torrent";
p.Start();
#2
楼上添加了什么引用
#3
System.Diagnostics
#4
Process p = new Process();
p.StartInfo.FileName = "迅雷";
p.StartInfo.Arguments = @"C:\Documents and Settings\Administrator\桌面\201110161149576807.torrent";
p.Start();
报错,在Start()系统找不到指定的文件
p.StartInfo.FileName = "迅雷";
p.StartInfo.Arguments = @"C:\Documents and Settings\Administrator\桌面\201110161149576807.torrent";
p.Start();
报错,在Start()系统找不到指定的文件
#5
#6
大哥啊,你怎么就知道copy呢,好带也看看帮助
p.StartInfo.FileName = "迅雷";
把迅雷改为你的程序路径
p.StartInfo.FileName = "迅雷";
把迅雷改为你的程序路径
#7
#8
Process p = new Process();
p.StartInfo.FileName = @"C:\Program Files\Thunder Network\Thunder\Program\Thunder.exe";
p.StartInfo.Arguments = @"C:\Documents and Settings\Administrator\桌面\201110161149576807.torrent";
p.Start();
这个步骤只是打开了迅雷,没有同时用迅雷打开torrent文件
#9
1L 你还知道怎么修改该注册表来修改.mp4文件的打开方式吗?不是root新建.mp4/shell/commond,这个没用!