我需要访问项目中的文件夹。我使用过Directory.CurrentDirectory并且它无法正常工作是否有办法访问文件夹结构中的文件夹
答案 0 :(得分:1)
你试图在项目文件夹中访问meanz本地文件夹??? 如果你这样做,所以你可以在我的情况下使用这个创建文件夹你可以改变它
StorageFolder folder = await ApplicationData.Current.LocalFolder.CreateFolderAsync(“Folder Name”,CreationCollisionOption.OpenIfExists);
并且您也可以像这样使用给定的uri路径访问文件夹,在我的情况下,从项目中的本地文件夹中选择图像..
private String imagePath = null; ImageSource image = new BitmapImage(new Uri(new Uri(“ms-appdata:/// local / Folder Name /”),this.imagePath));