如何从本地文件夹获取扩展文件?我在包
上的库文件夹上有很多文件BookAudio类:
class BookAudio
{
public string Name { get; set; }
}
我的意思是不在驱动器E:\或另一个驱动器上,而是在包文件夹" Library"中。 码: StorageFolder library = await installedLocation.CreateFolderAsync(" library",CreationCollisionOption.OpenIfExists); 我希望将扩展名转换为if,例如:如果扩展名为pdf,则导航到pdfView页面。
答案 0 :(得分:1)
试试这个 Path.GetExtension Method (String)
string ext = Path.GetExtension("FilePath");
或者你可以简单地使用这个
string PathTofile = @"E:\POSAPP\POS\POS\bin\Debug\kjhs.exe";
string extension = PathTofile.Substring(PathTofile.LastIndexOf('.')+1, PathTofile.Length - PathTofile.LastIndexOf('.')-1);