通知
すべてクリア
Topic starter
2005年8月20日 10:06 AM
こんにちは
WritePrivateProfileStringでiniファイルのパス指定は
フルパスじゃないといけないのでしょうか?
相対パスを指定すると戻り値で0以外が返るので失敗している訳ではないと思うのですが
文字列が書き込まれません。
フルパスだと書き込まれます。
ソース
int a = WritePrivateProfileString(sec,key,0x00,INI.ini);
環境はwin200 vc.NETです。
2005年8月20日 10:59 AM
MSDNをよく読みましょう。
>If the lpFileName parameter does not contain a full path and file name for the
file, WritePrivateProfileString searches the Windows directory for the file. If
the file does not exist, this function creates the file in the Windows
directory.
Topic starter
2005年8月20日 5:13 PM
ゥさん。ご返答有難うございます。
フルパスを指定しなかった場合、Windows ディレクトリ内でこのファイルを検索
するのですね。
失礼しました。