About 311,000 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 …

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

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

  6. Python - Can't find pip.ini or pip.conf in Windows

    So, if pip.ini file is not exist in these paths you can create the new file by refer these path depend on environment scopes (global, user, and site) that you need python execute.

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

    You are trying to change the timezone for your web server processes, but you are editing the CLI php.ini file (/etc/php5/cli/php.ini) which will change it only when running PHP from the terminal.

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

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