0

我需要访问项目中的文件夹。我使用了 Directory.CurrentDirectory 并且它不起作用有没有办法访问文件夹结构中的文件夹

4

1 回答 1

1

ru 试图在项目文件夹中访问意味着本地文件夹???如果您尝试这样做,那么您可以在我的情况下使用这个我创建文件夹,您可以更改它

StorageFolder 文件夹 = 等待 ApplicationData.Current.LocalFolder.CreateFolderAsync("文件夹名称", CreationCollisionOption.OpenIfExists);

你也可以像这样访问具有给定uri路径的文件夹,在我的情况下,我从项目中的本地文件夹中选择图像..

私有字符串 imagePath = null; ImageSource image = new BitmapImage(new Uri(new Uri("ms-appdata:///local/Folder Name/"), this.imagePath));

于 2012-06-28T05:46:22.127 回答