So I have been making an application where I edit a .txt
file that I would like to send to other people, but it has my directory in it. It is basically C:\users\(MYNAME)\etc...
and the application wouldn't work for anyone except me. Anyone have a solution on that.
My code is:
string text = File.ReadAllText(@"C:\Users\ME\XXX\XXX\XXX\options.txt");
text = text.Replace("text", "text");
File.WriteAllText(@"C:\Users\ME\XXX\XXX\.XXX\options.txt", text);