C#安装的默认路径

时间:2013-04-24 03:17:32

标签: c# file-io path text-files

在c#上创建文本文件时,我应该指定哪条路径。

我希望它放在我的应用程序的安装文件夹中。

因为我有这样的代码。

System.IO.StreamWriter file = new System.IO.StreamWriter("what path to put?");

2 个答案:

答案 0 :(得分:2)

这将为您提供安装应用程序的目录的路径。(程序集在哪里)

 string path = AppDomain.CurrentDomain.BaseDirectory;

答案 1 :(得分:0)