Files are open in the background of the UWP application on second time in hyperlink
private async void Filepath_PointerPressed(object sender, PointerRoutedEventArgs e)
{
var hyper = sender as TextBlock;
var path = hyper.Text.ToString();
//string folderPath = System.IO.Path.GetDirectoryName(path);
StorageFolder folder = await StorageFolder.GetFolderFromPathAsync(path);
await Launcher.LaunchFolderAsync(folder);
}
