User AgentOrange - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T05:54:35Z http://stackoverflow.com/feeds/user/49062 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1887318/filestream-seems-to-find-an-unexisting-file 0 FileStream seems to find an unexisting file AgentOrange 2009-12-11T10:59:06Z 2009-12-11T11:46:12Z <p>I have this code:</p> <pre><code>public static string GetUserEmail() { string path = Application.StartupPath + "\\mail.txt"; MessageBox.Show(path); string adres = String.Empty; if (File.Exists(path)) { using (StreamReader sr = new StreamReader(path)) { adres = sr.ReadLine(); } } else { using (FileStream fs = File.Create(path)) { using (StreamReader sr = new StreamReader(path)) { adres = sr.ReadLine(); } } } MessageBox.Show(adres); return adres; } </code></pre> <p>I checked the ApplicationPath with the MessageBox.Show(); as you can see, go there and delete the file, re-launch the app, and it still reads the previous line . I uninstall the app re-install and still seems to find the file and read the same line I have entered in the very first installation. I searched windows, the whole C drive, there is no mail.txt and it still finds the mail.txt and reads the line (a email address, used to identify the user)</p> <p>What can it be? aliens?</p> http://stackoverflow.com/questions/144661/python-vs-ruby-for-metaprogramming/395563#395563 0 Answer by AgentOrange for Python Vs. Ruby for Metaprogramming AgentOrange 2008-12-27T23:07:20Z 2008-12-27T23:07:20Z <p>if you love the rose, you have to learn to live with the thorns :)</p> http://stackoverflow.com/questions/1887318/filestream-seems-to-find-an-unexisting-file/1887550#1887550 Comment by AgentOrange on FileStream seems to find an unexisting file AgentOrange 2009-12-11T12:26:10Z 2009-12-11T12:26:10Z Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) returns C:\Users\MyName\AppData\Roaming which I cannot see in windows explorer. Like it does not exist ? http://stackoverflow.com/questions/1887318/filestream-seems-to-find-an-unexisting-file/1887550#1887550 Comment by AgentOrange on FileStream seems to find an unexisting file AgentOrange 2009-12-11T12:22:38Z 2009-12-11T12:22:38Z it does work after I install the program. I installed it to several machines several times ...