I have a link label in WPF C#, i want, on clicking that label, it should copy a saved file from specific folder, and save the file to some location wherever user wants to save, just like we do Save As in any software application. In SaveFileDialog class i can see that there is no option to open or copy a saved file and then to save some where else, please let me know how can i do so.
Thanks
I have a link label in WPF C#, i want, on clicking that label,
Share
Well you can use Open File Dialog and Save File Dialog in sequence in this scenario
First use Open File Dialog to ask user which file to copy
Then use Save File Dialog to save copied file to user defined location