Link to home
Start Free TrialLog in
Avatar of Max Destiny
Max DestinyFlag for United States of America

asked on

Put File

Where can I put File to debug it normally?

(ApplicationData.Current.Folder)
Avatar of AndyAinscow
AndyAinscow
Flag of Switzerland image

Anywhere you want.
You can only debug files easily/usefully if they are built with debug information.  Most exe files do not include that information, some are even specifically obfuscated to hinder you inspecting the file in a debugger.
What are you developing? (Store, console etc.)
ASKER CERTIFIED SOLUTION
Avatar of Ryan Chong
Ryan Chong
Flag of Singapore image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Max Destiny

ASKER

I only work universal apps and trying to create an IStorageFile in order to use:

private async void Button_Tapped(object sender,TappedRoutedEventArgs)
{


Windows.Data.Pdf.PdfDocument d = await PdfDocument.Load(IStorageFile);}

but it says "no can find the file"
not create convert StorgaeFile.GetFileByPath(string filename) to IStorageFile
oh I can upload pdf by a stream , didn't know that thanks anyway