作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试从图库中获取文件名,但是我正在使用的库似乎没有检索文件名的方法,但是它具有用于检索文件路径的方法,我正在使用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/
我是一名优秀的程序员,十分优秀!