Reputation: 877
in silverlight , user gets the file stream and not the file path... Please can u tell the difference between the two and is there any way to find out file path in silverlight?
Upvotes: 2
Views: 1156
Reputation: 17556
Stream is a pipeline which is plugged to the source and File Path is just a string which is different in differnt OS.
Upvotes: 0
Reputation: 1062620
A stream is a pipe to the data, and a path is a string... you might be able to get the path from .Name
if you actually have a FileStream
, but if you have a Stream
: not so much.
Upvotes: 2