[cpp] view plain copy
- 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));
- }
[cpp] view plain copy
如果在QtCreator内执行的话,因为获取的当前地址是项目目录,所以路径会不对
所以如果要进行测试也要到目录下的应用文件(如我的:RemoveFiles.exe)
时间: 2024-10-25 04:18:57