我正在用C#.net创建一个Windows服务。在服务中,我有一个FileSystemWatcher,用于检查文件创建事件的目录(在我的保管箱中)。到目前为止没问题。我的想法是我注意创建torrent文件。然后,当在该目录中创建一个torrent文件时,我想将它添加到uTorrent并开始下载。
Windows服务,文件系统观察者,完全没问题。我唯一的问题是:如何将洪流添加到uTorrent(或其他torrent客户端),或者如何在C#中下载torrent?
我希望我清楚自己: - )
答案 0 :(得分:3)
启动默认的BitTorrent客户端:
using System.Diagnostics;
using System.IO;
string dirWithTorrent = @"c:\Downloads";
Process.Start(Path.Combine(dirWithTorrent, "example.torrent"));
答案 1 :(得分:0)
uTorrent JSON API有许多'包装'库,您可以使用它来操作uTorrent!
我不知道其他客户端提供的远程控制功能。毫无疑问,命令行。