About 322,000 results
Open links in new tab
  1. 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 …

  2. 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 …

  3. 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.

  4. How to set boolean values in an INI configuration file?

    I've seen a variety of ways used to set boolean values in INI files: variable = true variable = 1 variable = on variable = yes Which is the most canonical, common, and/or preferred way?

  5. php - ini_set not working - Stack Overflow

    Sep 27, 2012 · 1 My answer might be off-topic but I almost always come back to this question via Google when my ini_set calls are not working. Sharing my case might help others to solve an …

  6. 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...

  7. Windows batch script to read an .ini file - Stack Overflow

    Oct 25, 2017 · I'm trying to read an .ini file with the following format: [SectionName] total=4 [AnotherSectionName] total=7 [OtherSectionName] total=12 Basically I want to print out …

  8. config - How can I access INI files from Perl? - Stack Overflow

    Jan 6, 2010 · What is the best way to parse INI file in Perl and convert it to hash?

  9. How do I grab an INI value within a shell script? - Stack Overflow

    I have a parameters.ini file, such as: [parameters.ini] database_user = user database_version = 20110611142248 I want to read in and use the database version specified in the parameters...

  10. Refer variable from another ini file - Stack Overflow

    Nov 23, 2015 · How can I parse variable from another ini file? In following example, I'd like to parse var_a from original_configuration.ini and use it at new_configuration.ini …