Xamarin目前的项目路径

时间:2016-02-02 09:27:24

标签: c# .net xamarin

如何在Xamarin.Android或Xamarin.Forms项目中获取当前工作项目的根路径?表单项目是PCL,因此我在Xamarin.Android项目中尝试。试过以下事情:

string rootPath = AppDomain.CurrentDomain.RelativeSearchPath;
string rootPath = AppDomain.CurrentDomain.SetupInformation.PrivateBinPath;
string rootPath = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location);
string rootPath = System.Environment.CurrentDirectory;
string rootPath = System.IO.Directory.GetCurrentDirectory();

一切都返回null。我想在特定文件夹中动态创建文件,因为我需要项目的根路径。如何获得它?

0 个答案:

没有答案