我有一个 C# 应用程序,我想在其中创建一个文件:
string fileName = "test.txt"; // a sample file name
// Delete the file if it exists.
if (System.IO.File.Exists(fileName))
{
System.IO.File.Delete(fileName);
}
// Create the file.
using (System.IO.FileStream fs = System.IO.File.Create(fileName, 1024))
{
// Add some information to the file.
byte[] info = new System.Text.UTF8Encoding(true).GetBytes("This is some text in the file.");
fs.Write(info, 0, info.Length);
}
string s = "";
using (System.IO.StreamReader sr = System.IO.File.OpenText(fileName))
{
while ((s = sr.ReadLine()) != null)
{
textBox1.Text += s;
}
}
我需要通过程序外部的密码保护文件,并且无需密码即可在程序内部访问该文件。
如何更改代码段以执行此任务?