I'm using the C# StreamWritier
class. Questions:
I'm creating the file like so:
private void button1_Click(object sender, EventArgs e)
{
SaveFileDialog save = new SaveFileDialog();
save.FileName = textBox1.Text;
save.Filter = "Text File | *.rtf";
if (save.ShowDialog() == DialogResult.OK)
{
StreamWriter writer = new StreamWriter(save.OpenFile());
writer.WriteLine(textBox2.Text);
}
writer.Dispose();
writer.Close();
}
Hello you can try with this method
1
public static void SetFileReadAccess(string FileName, bool SetReadOnly)
{
FileInfo fInfo = new FileInfo(FileName);
// Set the IsReadOnly property.
fInfo.IsReadOnly = SetReadOnly;
}
2
File.SetAttributes(yourFilePath, FileAttributes.Hidden);
......