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.
我正在尝试通过在 php 中使用 exec() 来 rar 多个文件。(使用 rar 命令行)
示例代码:
exec("rar a CommandOptionsHere File.rar File.txt");
上面的代码是对单个文件进行rar,如何在一行代码中对多个文件进行rar?
卷拆分在后期是可能的。
有什么建议吗?
P/S:我想 rar 多个文件,而不是文件夹。
像这样:
exec("rar a CommandOptionsHere File.rar File1.txt File2.txt");
见: http: //pl.digipedia.org/man/doc/view/rar.1/