1

我正在研究简单的图像处理程序。我目前处于必须保存图像的阶段:我现在正在做类似的事情: 外部来源

但有一个问题。每次我想保存图像时,我都会覆盖以前的图像。如何检查相册“已保存图片”中是否存在文件?

4

2 回答 2

2

假设您知道文件名,您可以使用如下内容:

using (var ml = new MediaLibrary())
{
    using (var pics = ml.SavedPictures)
    {
        using (var img = pics.LastOrDefault(pic => pic.Name == FILENAME))
        {
            if (img == null)
            {
                // file doesn't exist
            }
            else
            {
                // file does exist
            }
        }
    }
}
于 2012-09-06T17:20:17.353 回答
0

试试这个。在pictureAlbum 中查找文件

using (var library = new MediaLibrary())
{
   var appFolder = library.RootPictureAlbum.Albums.FirstOrDefault(al => al.Name == "folderName");
    if (appFolder != null && appFolder.Pictures.Count > 0)
    {
        var file = appFolder.Pictures.FirstOrDefault(pc => pc.Name == ("fileName"));
        if (file == null)
        {
            // file doesn't exist
        }
        else
        {
            // file does exist
        }
    }
}
于 2016-02-17T07:27:21.087 回答