Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个数据库表,其中磁铁 URL 由另一个程序存储,例如磁铁:?stuff.com%num。我想使用一个单独的程序将这些 URL 添加到 bittorrent。
任何帮助,将不胜感激!
如果磁力链接已经与 BitTorrent 相关联,您可以简单地使用Diagnostics.Process.Start
Diagnostics.Process.Start
Diagnostics.Process.Start("magnet:?...")
如果没有关联磁力链接,那么您可以将磁力链接作为参数传递,如下所示:
Diagnostics.Process.Start("C:\...\BitTorrent.exe", "magnet:?...")