从零开始编写一个BitTorrent下载器 (12)

最后来到了主函数。

func main() { inPath := os.Args[1] outPath := os.Args[2] tf, err := torrentfile.Open(inPath) if err != nil { log.Fatal(err) } err = tf.DownloadToFile(outPath) if err != nil { log.Fatal(err) } } 项目运行截图

将项目打包为单程序,这里仅展示Windows平台:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zgfffd.html