ในการเปิดไฟล์ที่ซ่อนอยู่ ให้ทำให้มองเห็นได้ก่อน คุณสามารถทำได้โดยลบการตั้งค่าแอตทริบิวต์ที่ซ่อนอยู่ออก -
FileInfo file= new FileInfo(Environment.CurrentDirectory + @"\myFile.txt"); file.Attributes &= ~FileAttributes.Hidden;
ตอนนี้ถือว่าเป็นไฟล์ข้อความปกติแล้วเปิดขึ้น อ่านเนื้อหา -
using (StreamReader sr = new StreamReader("myFile.txt")) { string line; while ((line = sr.ReadLine()) != null) { Console.WriteLine(line); } }
หลังจากอ่านแล้ว ให้ตั้งค่าแอตทริบิวต์เป็นซ่อนอีกครั้งเพื่อซ่อนไฟล์ -
file.Attributes |= FileAttributes.Hidden;