About 375,000 results
Open links in new tab
  1. QSettings - where is the location of the ini file? - Stack Overflow

    Oct 27, 2010 · I'm using QSettings to store some data as ini file in Windows. I want to see the ini file, but I don't know what is the location of the ini file. This is my code: QSettings *set = new …

  2. c# - Reading/writing an INI file - Stack Overflow

    Oct 20, 2008 · It is more common to store settings in an XML-based configuration file or in the registry. However, if your software shares settings with a legacy application it may be easier to …

  3. How would you save a simple settings/configuration file in Python?

    Oct 27, 2024 · Configuration files in Python There are several ways to do this depending on the file format required. ConfigParser [.ini format] I would use the standard configparser approach …

  4. How to read and write INI file with Python3? - Stack Overflow

    I need to read, write and create an INI file with Python3. FILE.INI default_path = "/path/name/" default_file = "file.txt" Python File: # Read file and and create if it not exists config = in...

  5. windows - Registry vs. INI file for storing user configurable ...

    But where should I store the values after the user hits the Apply button on that form? What are the pros and cons of storing settings in the Windows registry vs. storing them in a local INI file or …

  6. Change value in ini file using ConfigParser Python

    Jan 15, 2015 · If you make your code a complete example, it would show declaration of parser and the filename would match given question, i.e. 'settings.ini' to actually change the file …

  7. Do standard Windows .ini files allow comments? - Stack Overflow

    Sep 4, 2009 · And, is there a proper spec of the .INI file format anywhere? Thanks for the replies - However maybe I wasn't clear enough. It's only the format as read by Windows API Calls that …

  8. Create a config or INI file to store user settings preferences

    Jan 5, 2016 · I also have the ability to trace according to a flag. I would like to have a config or INI file to set those flags in order to prevent changing the code every time I want to set those …

  9. where to put initialization files in windows - Stack Overflow

    May 12, 2015 · PathAppend(szAppData, "Company\Product\1.0\File.ini") There is also CSIDL_COMMON_APPDATA for non-user specific data and CSIDL_LOCAL_APPDATA for …

  10. How to convert a conda env yaml file to a list of requirements for …

    May 28, 2023 · My package may have requirements (listed under settings.ini with the key requirements) that get automatically important and used in the setup.py file. While developing …