Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8545999
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T12:55:05+00:00 2026-06-11T12:55:05+00:00

I have an array with file paths (like C:\…) and I would like to

  • 0

I have an array with file paths (like “C:\…”) and I would like to open them with the default app, from my app. Let’s say it’s a list and when I click one of them, it opens.

This is the way to launch a file async:

await Windows.System.Launcher.LaunchFileAsync(fileToLaunch);

It requires a Windows.Storage.StorageFile type of file, which has a Path read-only property, so I cannot set the Path. How can I open them once they’re tapped/clicked?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T12:55:07+00:00Added an answer on June 11, 2026 at 12:55 pm

    Copied from my link in the comments:

    // Path to the file in the app package to launch
       string exeFile = @"C:\Program Files (x86)\Steam\steamapps\common\Skyrim\TESV.exe";
    
       var file = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync(exeFile);
    
       if (file != null)
       {
          // Set the option to show the picker
          var options = new Windows.System.LauncherOptions();
          options.DisplayApplicationPicker = true;
    
          // Launch the retrieved file
          bool success = await Windows.System.Launcher.LaunchFileAsync(file, options);
          if (success)
          {
             // File launched
          }
          else
          {
             // File launch failed
          }
       }
    

    You can of course omit the var options = **-Part so the ApplicationPicker doesn’t get opened

    or you can use this:

    StorageFile fileToLaunch = StorageFile.GetFileFromPathAsync(myFilePath);
    await Windows.System.Launcher.LaunchFileAsync(fileToLaunch);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an array filled with paths looking like this: library/main/single/list.php library/article/grid/thumbs.php library/footer/tiny.php These
I have an array of file names/paths. Lets say it contains: File1.txt Folder1/File2.txt Folder1/File3.txt
well i have an array which takes it's data from a plist file like
I have a dynamically generated array of filenames, let's say it looks something like
I have an array containing full paths of files. Like this: [0] => dir1/dir2/dir3/file.ext
I have an array of file path components like this: [ ['some', 'dir', 'file.txt'],
I have dynamic array filled with bytes, which are read from .raw file with
I have a byte array filled from a file uploaded. But, in another part
I'm trying to make an array from file path components. I have an array
Hey all, I have an array that holds all of the .aif file paths

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.