Qt Windows下开机自动启动自己的程序

void Widget::Readregedit()
{
    QString path;
    QDir dir;
    path=dir.currentPath();//在QtCreator中点击运行的话地址是工程地址,想要获得应用地址就点击文档中的应用程序(.exe文件)
    QString sApp = path + "/RemoveFiles.exe";//我的程序名称
    sApp.replace("/","\\");
    qDebug()<<sApp;
    QSettings *reg=new QSettings("HKEY_LOCAL_MACHINE",QSettings::NativeFormat);
    //开机自动运行
    reg->setValue("SOFTWARE/Microsoft/Windows/CurrentVersion/Run/RemoveFiles.exe",QVariant(sApp));

}
 
 

如果在QtCreator内执行的话,因为获取的当前地址是项目目录,所以路径会不对

所以如果要进行测试也要到目录下的应用文件(如我的:RemoveFiles.exe)

你可能感兴趣的:(C++,windows,qt,应用程序)