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.
您好,谁能告诉我如何在 Qt 中打开指定的文件夹?
假设在 lineEdit 我定义文件夹路径,如
D:/MyFolder
那么如何使用按钮打开此文件夹?我应该为此使用什么?
您可以使用:
QDesktopServices::openUrl(QUrl::fromLocalFile(yourFolderPath));
在连接到您按钮的插槽内。