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.
我需要能够在我的 ftp 服务器上创建目录。
我知道 5.2.1 qt 中没有,那我该QFtp怎么办?mkdirQNetworkAccessManager
QFtp
mkdir
QNetworkAccessManager
QNetworkAccessManager 不支持
尽管建议QNetworkAccessManager尽可能多地使用,但您始终会退回到QtFtp附加组件,如下所示:
QtFtp
QT += ftp
然后,您将能够使用该类的mkdir方法QFtp。