因此,我一直在制作一个应用程序,在其中编辑要发送给其他人的.txt
文件,但是其中包含我的目录。基本上是C:\users\(MYNAME)\etc...
,该应用程序仅对我有效。任何人都有解决方案。
我的代码是:
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);
答案 0 :(得分:2)
使用推荐的其他目录(例如Broots),或者使用以下命令获取当前用户的文件夹:
Environment.GetFolderPath(Environment.SpecialFolder.UserProfile)
哪个将返回C:\ Users \ Username