如何在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。我想在特定文件夹中动态创建文件,因为我需要项目的根路径。如何获得它?