c# - Silverlight 3: Best way to select a local file for input / upload -
I am using Silverlight 3 to write a lib applcation which takes input file, does some stuff, and Then gives an output file. What is the easiest way to get an input file from the user and then return the file to the user? Can I use the local file system to do this? how? Most likely the files will be ASCII files, but can be excel for some days (hopefully soon).
You provided local file system for you to read files (OpenFileDialog ) And SaveFileDialog (to write files). You can not access arbitrary files, only to those people where the user viewed and fixed the file dialog
Comments
Post a Comment