gpt4 book ai didi

c# - 如何从图库中挑选的图像中获取文件名?

转载 作者:行者123 更新时间:2023-12-03 10:25:04 25 4
gpt4 key购买 nike

我正在尝试从图库中获取文件名,但是我正在使用的库似乎没有检索文件名的方法,但是它具有用于检索文件路径的方法,我正在使用Xam.Plugin.Media。我需要文件名将其作为参数传递给我正在使用的其他方法。这是我的代码:

   var file = await Plugin.Media.CrossMedia.Current.PickPhotoAsync(new 
Plugin.Media.Abstractions.PickMediaOptions
{
PhotoSize = Plugin.Media.Abstractions.PhotoSize.Medium,

});


if (file == null) return;
imgChoosed.Source = ImageSource.FromStream(() => {
var stream = file.GetStream();
return stream;
});

// computerVision = new ComputerVisionViewModel();

//I need to pass the file name as an argument here
// var result = await computerVision.ConnectToVisualRecognition(file.Path,file.Name);

最佳答案

用这个。

var fileNameWithExtenstion = Path.GetFileName(filePath);
var fileNameWithoutExtenstion = Path.GetFileNameWithoutExtension(filePath);

关于c# - 如何从图库中挑选的图像中获取文件名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62627402/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com