Windows CEで絶対パスを使う方法
参考コード:
private void btnctm_Click(object sender, EventArgs e)
{
string path = “Program Files//CheckWinCE//configPIO.txt";
using (StreamReader sr = File.OpenText(path))
{
string s = " “;
s = sr.ReadLine();
textBox1.Text = s;
sr.Close();
}
}