I would like to locate the folder where QtCreator save all its settings (text editor preferences, syntax highlighting, etc.) so that I can back them up. Does anybody know where they are?
相关问题
- QML: Cannot read property 'xxx' of undefin
- QTextEdit.find() doesn't work in Python
- QT Layouts, how to make widgets in horizontal layo
- QT GUI freezes even though Im running in separate
- QGraphicsView / QGraphicsScene size matching
相关文章
- ubuntu20.4中c#通过c++库调用python脚本
- Qt槽函数自动执行多遍
- Is there a non-java, cross platform way to launch
- How to get a settings storage path in a cross-plat
- Why doesn't valgrind detect a memory leak in m
- QTreeView remove decoration/expand button for all
- qt界面拥挤
- how do I correctly return values from pyqt to Java
See QtCreator Quick Tour.
On Windows in general, the files are located in
%APPDATA%\QtProject
and%LOCALAPPDATA%\QtProject
. Yes, you can use these paths in Explorer and in various command line shells. The environment variables (between the%
-signs) are expanded automatically. If you need the concrete paths, see below.Starting from version 2.7 it's
%APPDATA%/Roaming/QtProject
on Windows 7 and 8.To complete Bill's answer, Qt Creator might also create files in
\QtCreator\bin\
- this is where it's going to save all your projects by default.