❝Qt 5.15.0中的QFile类提供将文件移动到垃圾箱的API。它可以在Windows,macOS和支持freedesktop.org规范的Linux桌面平台上运行。❞
将QFile实例关联的文件移至回收站,如果成功,则返回true。
bool QFile::moveToTrash();
静态方法moveToTrash接受文件名作为第一个参数,并且不需要创建QFile实例,第二个参数是设置回收箱的路径。
static bool QFile::moveToTrash(const QString &fileName,
QString *pathInTrash = nullptr);