仅在 ini 文件中存储值

发布于 2024-10-18 12:34:36 字数 296 浏览 4 评论 0原文

我知道 .ini 在 .net 世界中并不流行。对于我尝试使用它们,我提前表示歉意。

我有一个 ini 文件,它以典型的键值对方式存储所有应用程序设置。现在我想向其中添加一些 Richtextbox 的内容。 Richtextbox 保存每行中文件夹的路径。问题是我希望 ini 文件中没有键,而只有值。像这样的事情:

[Folders]
c:/
d:/
e:/my downloads

基本上想知道如何在 ini 文件中仅存储值(没有键)。不确定这是否可以或应该这样做。

谢谢

I know .ini are not popular in the .net world. I apologize in advance in my attempt to use them.

I have an ini file that stores all app settings in a typical key value pair manner. Now I want to add to it , the contents of a few richtextboxes . The richtextbox holds paths to folders in each line. The thing is I want there to be no key ,but only values in the ini file. Something like this:

[Folders]
c:/
d:/
e:/my downloads

Basically want to know how to store only values in an ini file ( no keys). Not sure if this can or should be done.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

李不 2024-10-25 12:34:36

为什么不简单地以Folder1、Folder2、FolderN 的形式给他们密钥呢?
这取决于您的实施。您可以简单地迭代该部分中的所有可用键并检索值。

Why not simply give them keys in the form of Folder1, Folder2, FolderN?
It depends on your implementation. You could simply iterate over all available keys in the section and retrive the values.

忘东忘西忘不掉你 2024-10-25 12:34:36

这可以使用 Cinchoo 框架 来完成。

对于下面的示例 (C:\Temp\Test.Ini) ini 文件,

[Folders]
c:/
d:/
e:/my downloads

使用 Cinchoo 框架,您可以按如下方式迭代它们

using (ChoIniDocument doc = ChoIniDocument.Load(@"C:\Temp\Test.Ini"))
{
    foreach (string key in doc.GetSection("Folders").Keys)
    {
        Console.WriteLine(key);
    }
}

This can done using Cinchoo framework.

For a sample (C:\Temp\Test.Ini) ini file below,

[Folders]
c:/
d:/
e:/my downloads

Using Cinchoo framework, you can iterate through them as below

using (ChoIniDocument doc = ChoIniDocument.Load(@"C:\Temp\Test.Ini"))
{
    foreach (string key in doc.GetSection("Folders").Keys)
    {
        Console.WriteLine(key);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文