Discussion:
INIファイルのセクションの検索について
(too old to reply)
mancl
2007-05-18 06:38:01 UTC
Permalink
一つ質問があります
自動的に「INI」ファイルのセクションを検索するのは、
どうしますか?

下記の二つのAPI関数をImportしても検索できないようです
[DllImport("kernel32")]
private static extern long WritePrivateProfileString(string
section, string key, string val, string filePath);
[DllImport("kernel32")]
private static extern int GetPrivateProfileString(string section, string
key,string def, StringBuilder retVal, int size, string filePath);

どちら様、検索方法を教えていただけないでしょうか?
ありがとうございました。
Takeshi SHIGIHARA
2007-05-18 07:25:11 UTC
Permalink
英語のサイトですが、良いサイトがあります。
http://pinvoke.net/

以下にINIファイルのセクションを取得する方法があります。
http://pinvoke.net/default.aspx/kernel32/GetPrivateProfileString.html
http://www.pinvoke.net/default.aspx/kernel32/GetPrivateProfileSection.html
http://www.pinvoke.net/default.aspx/kernel32/GetPrivateProfileSectionNames.html
--
----- Takeshi SHIGIHARA
***@tka.att.ne.jp -----
うまい、早い、安い/2つだけ選べ--RFC1925.
mancl
2007-05-18 08:07:03 UTC
Permalink
下記のサイトにての方法によって
取得できました。

ほんとうにありがとうございました。
Post by Takeshi SHIGIHARA
英語のサイトですが、良いサイトがあります。
http://pinvoke.net/
以下にINIファイルのセクションを取得する方法があります。
http://pinvoke.net/default.aspx/kernel32/GetPrivateProfileString.html
http://www.pinvoke.net/default.aspx/kernel32/GetPrivateProfileSection.html
http://www.pinvoke.net/default.aspx/kernel32/GetPrivateProfileSectionNames.html
--
----- Takeshi SHIGIHARA
うまい、早い、安い/2つだけ選べ--RFC1925.
Loading...