About 55 results
Open links in new tab
  1. Do standard Windows .ini files allow comments? - Stack Overflow

    Sep 4, 2009 · Windows INI API support for: Line comments: yes, using semi-colon ; Trailing comments: No The authoritative source is the Windows API function that reads values out of INI files …

  2. ini - where to put initialization files in windows - Stack Overflow

    May 12, 2015 · I have more than one application. for personal reasons, I wouldn't like to use the registry: I prefer plain text initialization files (.ini). I also don't feel like holding the files in the same directory as …

  3. filenames - What is the difference between .ini and .conf? - Unix ...

    Nov 6, 2012 · INI is a configuration file standard. A .conf file could be an INI file, or it could be any other configuration system that the application supports. MySQL, for example, uses the file my.cnf by …

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

    Oct 20, 2008 · INI handlers can be obtained as NuGet packages, such as INI Parser. You can write your own INI handler, which is the old-school, laborious way. It gives you more control over the …

  5. What is the easiest way to parse an INI file in Java?

    Oct 10, 2008 · I am writing a drop-in replacement for a legacy application in Java. One of the requirements is that the ini files that the older application used have to be read as-is into the new …

  6. Setting the Timezone for PHP in the php.ini file - Stack Overflow

    1) Go to your phpinfo() page and search for Loaded Configuration File and open the php.ini file mentioned under that section. 2) Change the default timezone settings by adding your new timezone …

  7. Where is MySQL's my.ini located on Windows? - Stack Overflow

    You can find the my.ini file in windows at this location- C:\ProgramData\MySQL\MySQL Server 5.6 the ProgramData folder is a hidden folder, so make the according setting to see that folder.

  8. How can I find the php.ini file used by the command line?

    1133 Just run php --ini and look for Loaded Configuration File in the output for the location of php.ini used by your CLI.

  9. How to print all key-value pairs of certain sections in an INI file?

    Nov 18, 2024 · The INI file is Firefox's profiles.ini. I want to print everything under [Profilen] including the section headers, where the n's are non-negative integers, with a blank line separating each section.

  10. Recommended way to read and write .ini files - Stack Overflow

    Are any methods available in VBA to read and write INI files? I know I could use; Open "C:\\test.ini" For Input As #1 ...and parse the data. Instead I am trying to see what tools are already availa...