Tagged Questions
The inifile tag has no wiki summary.
32
votes
7answers
38k views
Reading/writing INI file in C#
Is there any class in .Net framework that can read/write standard ini files:
[Section]
<keyname>=<value>
...
Delphi have TIniFile component and I am looking if there is anything similar ...
5
votes
3answers
138 views
is there a function or unit sames as TIniFiles that will not save to file?
I have a project that use Inifile for reading the data configuration.
I decided to save the configuration to the resource.
i would like to ask help if is there a Unit or function that same as ...
4
votes
3answers
1k views
Read all the contents in ini file into dictionary with Python
Normally, I code as follows for getting a particular item in a variable as follows
try:
config = ConfigParser.ConfigParser()
config.read(self.iniPathName)
except ...
4
votes
1answer
3k views
How do I write Routing Chains for a Subdomain in Zend Framework in a routing INI file?
I am trying to create a subdomain using the Zend Router, and then for each section under a subdomain, such as subdomain.site.com/section/ I am creating another route and then trying to chain it to the ...
3
votes
3answers
2k views
Delphi ini file vista/xp/win7 Question
Update: I've added the following code:
function TSettingsForm.AppDataPath: string;
//CSIDL_APPDATA Individual user Data
//CSIDL_COMMON_APPDATA Common to Computer Data
// works so long as people ...
3
votes
6answers
1k views
How to initialise a C program using file, environment and/or command line?
In C, how to configure the initial settings for some program, using key-value pairs, with any or all of: a plain text configuration file, environment variables, and options on the command line. Also, ...
2
votes
2answers
75 views
how to create inifile in Delphi Prism for .net that will work on window and Linux(Mono)?
My Delphi Prism program needs to create and read and write into an inifile, but I think I noticed Delphi Prism doesn't really support any sort of Inifile structure. (Correct me if I am wrong.)
This ...
2
votes
1answer
98 views
where to put initialization files in windows
I am looking for an acceptable starting point for placing applications settings in a Windows machine. I have more than one application. for personal reasons, I wouldn't like to use the registry: I ...
2
votes
5answers
367 views
Universal approach for storing INI-type settings and/or DB files on various Windows machines
OK, true confession first: Maybe it's just me, but sometimes "best practices for program settings" on Windows machines feels like it's changed more than Microsoft's data access strategies. I'm still ...
1
vote
3answers
398 views
reading 2 lines from IniFile
Trying again. On advice, adding the piece of code that I do understand. I am fine with the fact that I have to save 4 bits of information in two lines like so:
...
1
vote
0answers
296 views
IniFile Delphi save and load [closed]
Following from a question I have asked before I was wondering how I could save and load 4 bits of information that are related.
This is what the form will look like. I have a 8 editboxes and a ...
1
vote
1answer
128 views
Could there be encoding-related problems when storing unicode strings in ini files?
There are already questions regarding unicode and ini files, but many of them are rather domain-specific. So I am not sure if the answer can be applied to the general case.
Motivation: I want to use ...
1
vote
3answers
689 views
GetPrivateProfileString - c++ class - return string - memory pre calculation
In GetPrivateProfileString, lpReturnedString returns the string value present in the key of a particular section of an ini file.
My question is that how will i know exactly, how much memory has to be ...
1
vote
1answer
1k views
Edit ini file option values with ConfigParser (Python)
Anyone know how'd I'd go about editing ini file values preferably using ConfigParser? (Or even a place to start from would be great!) I've got lots of comments throughout my config file so I'd like to ...
1
vote
1answer
299 views
Variables in ini files php
Hey I have this kinda structure in my ini file I want to be able parse a variable inside a variable value
site.url = "www.example.com"
site.url.images = site.url "/images"
However, site.url is not ...
1
vote
3answers
404 views
Problem with kernel32.dll - GetPrivateProfileSectionNamesA
I have a problem reading IniFiles with different encodings. If I read a Unicode file, GetPrivateProfileSectionNamesA seems to stumble over the fist line. ASCII or ANSI works fine.
I wrote a little ...
0
votes
3answers
60 views
Preventing WritePrivateProfileString going to the registry
Is there any way to disable WritePrivateProfileString from writing to the registry and instead use the ini file that we provide to it? I see from the MSDN that you can disable file writes and ...
0
votes
2answers
209 views
php parse_ini_file oop & deep
I would like to make use of somehting like [parse_ini_file][1].
Lets say for instance I have a boot.ini file that I will load for further procedure:
;database connection settings
[database]
...
0
votes
1answer
179 views
Config::Simple and constant assignation in perl
I am using the Config::Simple module and the constant pragma. I am parsing a configuration file and setting the values as constant. the test configuration file (test.ini) contains:
...
0
votes
3answers
286 views
writing and reading inifiles ordered
I want to know how I can write an Inifile so that I can read from it in order.
First of all writing it: Let say I have 2 strings I want to save (Name and Lastname).
This is a button. So it will be ...
0
votes
1answer
174 views
How can I print multiple values of the same key from SimpleIni
The ini file:
user = abc
user = def
user = ghi
user = xyz
The code:
CSimpleIniCaseW ini;
ini.SetUnicode();
ini.LoadFile("myapp.ini");
CSimpleIniCaseW::TNamesDepend values;
ini.GetAllValues(L"", ...
0
votes
1answer
461 views
C# read registry key, compare it to ini config file, if match return result under config section, do somethig else
I got below problem and with my entry level of C# please help on how to get this be done?
Scenario:
1. My registry keys:
__DatabaseConnection
|____config1
value: username1
value: password1
...
0
votes
2answers
91 views
How do I perform a simple modification of an .ini file in perl?
I need change a value in a ini file like this val2 is the one being changed
Before
[section1]
var1=val1
var2=val2
var3=va3
After:
[section1]
var1=val1
var2=value
var3=va3
0
votes
3answers
200 views
open database with initfile
how to open a database local or remote with IniFile.
something like the below.
vBanco : String;
IniFileName : TIniFile;
begin
IniFileName := ...
0
votes
2answers
118 views
How to retrieve value from etc/sysconfig in Python
I have a config file FOO in /etc/sysconfig/. This Linux file is very similar to INI-File, but without a section declaration.
In order to retrieve a value from this file, I used to write a shell ...
0
votes
2answers
2k views
How to read config file entries from an INI file
I can't use the Get*Profile functions because I'm using an older version of the windows CE platform SDK which doesn't have those. It doesn't have to be too general.
[section]
name = some string
I ...