Я пытаюсь создать торрент-файл с моноторрентным пакетом, используя C #,
Я уже создал торрент-файл с помощью создателя торрента, но я хочу добавить еще одну опцию, которую не могу найти в создателе торрентаметоды, свойства.
параметры, которые я ищу: добавление URL-адреса отслеживания (S), начального URL-адреса (S), источника, оптимизация выравнивания.
Вот фрагмент моего кода:
string filepath = ofd.FileName;
PathDirectoryTxt.Text = filepath;
MonoTorrent.Common.TorrentCreator torrentcreaotr = new MonoTorrent.Common.TorrentCreator();
ITorrentFileSource fileSource = new TorrentFileSource(filepath);
torrentcreaotr.Comment = CommentsRichTxt.Text;
torrentcreaotr.CreatedBy = "Google using " + VersionInfo.ClientVersion;
torrentcreaotr.Publisher = "www.itsitus.com";
if ((PrivateTorrentCheckbox.Checked))
{
torrentcreaotr.Private = true;
}
else if (!PrivateTorrentCheckbox.Checked)
{
torrentcreaotr.Private = false;
}
string savepath = sfd.FileName;
torrentcreaotr.Create(fileSource, savepath);
MessageBox.Show("torrent file has been created successfully !");