7
votes
5answers
4k 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 …
2
votes
6answers
501 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, …
1
vote
3answers
119 views
Problem with kernel32.dll - GetPrivateProfileSectionNamesA
Hi,
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 …
1
vote
1answer
55 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 …
1
vote
1answer
709 views
How do I write Routing Chains for a Subdomain in Zend Framework in a routing INI file?
Hi, 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 …
1
vote
5answers
211 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 …
0
votes
3answers
968 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 …
