Windows-8 – 检查WinRT中项目中是否存在文件

前端之家收集整理的这篇文章主要介绍了Windows-8 – 检查WinRT中项目中是否存在文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个WinRT Metro项目,它根据所选项目显示图像.但是,某些选定的图像将不存在.我想要做的是陷阱他们不存在的情况,并显示一个替代方案.

这是我的代码到目前为止

internal string GetMyImage(string imageDescription)
{
    string myImage = string.Format("Assets/MyImages/{0}.jpg",imageDescription.Replace(" ",""));

    // Need to check here if the above asset actually exists

    return myImage;
}

示例调用

GetMyImage("First Picture");
GetMyImage("Second Picture");

所以Assets / MyImages / SecondPicture.jpg存在,但Assets / MyImages / FirstPicture.jpg没有.

起初我想到使用WinRT相当于File.Exists(),但似乎不是一个.无需去尝试打开文件并捕获错误的程度,只需检查文件是否存在,或文件是否存在于项目中?

您可以使用 here中的GetFilesAsync枚举现有文件.考虑到您有多个可能不存在的文件,这似乎是有意义的.

Gets a list of all files in the current folder and its sub-folders. Files are filtered and sorted based on the specified CommonFileQuery.

var folder = await StorageFolder.GetFolderFromPathAsync("Assets/MyImages/");
var files = await folder.GetFilesAsync(CommonFileQuery.OrderByName);
var file = files.FirstOrDefault(x => x.Name == "fileName");
if (file != null)
{
    //do stuff
}

编辑:

正如@Filip Skakun指出的那样,资源管理器有一个资源映射,您可以在其上调用ContainsKey,它还有权检查合格资源(即本地化,缩放等).

编辑2:

Windows 8.1引入了一种新的获取文件文件夹的方法

var result = await ApplicationData.Current.LocalFolder.TryGetItemAsync("fileName") as IStorageFile;
if (result != null)
    //file exists
else
    //file doesn't exist
原文链接:https://www.f2er.com/windows/370999.html

猜你在找的Windows相关文章