在c#上创建文本文件时,我应该指定哪条路径。
我希望它放在我的应用程序的安装文件夹中。
因为我有这样的代码。
System.IO.StreamWriter file = new System.IO.StreamWriter("what path to put?");
答案 0 :(得分:2)
这将为您提供安装应用程序的目录的路径。(程序集在哪里)
string path = AppDomain.CurrentDomain.BaseDirectory;
答案 1 :(得分:0)