#include <QDir>
#include <QStandardPaths>
void MainWindow::regAppBoot(bool bIs)
{
#ifdef WIN32
QString exePath = qApp->applicationFilePath();
QString exeName = qApp->applicationName();
QString startupPath = QStandardPaths::writableLocation(QStandardPaths::ApplicationsLocation).
append("/").append("Startup");
if (bIs)
{
QDir dir(startupPath);
if (!dir.exists())
{
dir.mkdir(startupPath);
}
if (dir.exists())
{
QString exeLocation = startupPath + "/" + exeName + ".lnk";
QFile::link(exePath, exeLocation);
}
}
else
{
QDir dir(startupPath);
Qt之开机自启动
于 2024-09-25 08:04:30 首次发布