Questions tagged [filesavepicker]
26 questions
1
vote
0 answers
Save file on windows phone 8.1
How to save a file that is not to replace the previous file on windows phone 8.1? Because using the code below, there is always a message dialog to replace and cancel, can not change the file name.
This is the code:
public void Save()
{
…

Rose
- 613
- 4
- 22
1
vote
1 answer
Windows phone c# File Save Picker Continuation
I am trying to learn to write a windows phone 8.1 app using c#.
I want the app to get location data, create a GPX file and write the data into a waypoint.
I can get the location, write the xml stuff I need and create a new file using the…

Tom
- 11
- 1
1
vote
2 answers
Offering multiple fileTypes with the same extension through FileSavePicker
In my WinRT / Windows Store App I want to allow the user to save a file as either plain text or markdown text through a FileSavePicker.
savePicker.FileTypeChoices.Add("Markdown Text", new List() { ".txt"…

roryok
- 9,325
- 17
- 71
- 138
0
votes
0 answers
UWP Trying to apply a RenderTransform to FileOpenPicker and FileSavePicker
My UWP app has the ability to be rotated 180 degrees (it's being designed for a horizontal touch screen).
I find that I can rotate pretty much everything in the app, e.g. controls / framework elements etc, using code like this...
public static…

NigelP
- 219
- 2
- 6
0
votes
2 answers
UWP FileSavePicker Contract File Processing
In my App i'm using a a FileSavePicker Contract (Provider). So other Apps could save files to my App. I implemented it, as it is shown on MSDN. The Problem now is, that i have to process a "saved" file, but how do i know, when the saving is…

andy
- 509
- 1
- 8
- 21
0
votes
1 answer
Microsoft Graph SDK C#: Use FileSavePicker with Onedrive
Is it possible to use a FileSavePicker object to save a file in Onedrive using the Microsoft Graph SDK for C#.
The reason is that i need the user to select where the data backup file will be stored.
Using the following source code i am able to…

iikem
- 43
- 8
0
votes
0 answers
Windows Phone 10 File Save Picker Not Working
I'm having trouble getting the "file save picker" contract working in Windows Phone 10 for my Universal Windows App. I've added both "File Save Picker" and "Cached File Updater" declarations to the app manifest.
It works fine for me on a full…

FUR10N
- 750
- 6
- 18
0
votes
1 answer
How can I prompt the user for a save location from a Sharepoint page?
I have a related question here, where I was trying to create a link to the location of the saved file (where the location and filename are taken care of for the user). Unfortunately, the link won't open the file, due to path access denial (as…

B. Clay Shannon-B. Crow Raven
- 8,547
- 144
- 472
- 862
0
votes
1 answer
Windows Phone 8.1 RT PickSaveFileAndContinue() method creates an empty file
I'm trying to save a file to the Documents folder using PickSaveFileAndContinue() method in WP 8.1 RT. Everything is happening fine except the file which gets saved is empty.
When I get the file returned from the following code in OnActivated()…

Heshan
- 913
- 8
- 30
0
votes
1 answer
StorageFile filled with stream, not replacing the File
I have a Problem using the FileSavePicker.
I always thought, the FileSavePicker would replace the file, when you Chose the Name of an existing file. It even asks "theres already some file with that Name, do you want to replace it?" when you click…

HideAndSeek
- 374
- 3
- 16
0
votes
1 answer
FIleSavePicker saving 0 bytye file Windows Phone 8
So Im now told that the FileSavePicker only creates a blank file, and that Ill have to write additional code to then actually write to the file. Ive started a Task WriteToFile after the FileSavePicker but Im unsure how to finish it. With the…

user3568429
- 151
- 8