Merhaba arkadaşlar.C# 'ta not defterine yazdırırken IOException türünde bir hata ile karşılaştım
Hata mesajı:Additional information: The process cannot access the file 'C:\Users\emre\Desktop\Wordlist1.txt' because it is being used by another process.
Txt ye yazdırıken sanırım başka bir işlem tarafında kullanılıyor.Bu sorunu nasıl çözebilirm?
Kodlardan streamfile kısmı aşağıdadır.
string _dosya= "C:\\Users\\emre\\Desktop\\Wordlist1.txt";
TextWriter tw = new StreamWriter(_dosya, true);
tw.WriteLine(toplam);
tw.Close();
Bu sorunu nasıl çözebilirim?