User AgentOrange - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T05:54:35Zhttp://stackoverflow.com/feeds/user/49062http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1887318/filestream-seems-to-find-an-unexisting-file0FileStream seems to find an unexisting fileAgentOrange2009-12-11T10:59:06Z2009-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#3955630Answer by AgentOrange for Python Vs. Ruby for MetaprogrammingAgentOrange2008-12-27T23:07:20Z2008-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#1887550Comment by AgentOrange on FileStream seems to find an unexisting fileAgentOrange2009-12-11T12:26:10Z2009-12-11T12:26:10ZEnvironment.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#1887550Comment by AgentOrange on FileStream seems to find an unexisting fileAgentOrange2009-12-11T12:22:38Z2009-12-11T12:22:38Zit does work after I install the program. I installed it to several machines several times ...