using System; namespace 讀寫ini文件 [System.Runtime.InteropServices.DllImport("kernel32")] private static extern long WritePrivateProfileString(string section, string key, string val, string filePath); // 聲明INI文件的讀操作函數(shù) GetPrivateProfileString() [System.Runtime.InteropServices.DllImport("kernel32")] private static extern int GetPrivateProfileString(string section, string key, string def, System.Text.StringBuilder retVal, int size, string filePath);
public void Writue(string section, string key, string
value) // section=配置節(jié),key=鍵名,value=鍵值,path=路徑 WritePrivateProfileString(section, key, value, sPath); } // 每次從ini中讀取多少字節(jié) System.Text.StringBuilder temp = new System.Text.StringBuilder(255); // section=配置節(jié),key=鍵名,temp=上面,path=路徑 GetPrivateProfileString(section, key, "", temp, 255, sPath); return temp.ToString(); }
Current =
Directory.GetCurrentDirectory();//獲取當(dāng)前根目錄
Console.ReadKey(); |
|