user2091061
user2091061

Reputation: 877

Difference between file path and file stream?

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

Answers (2)

TalentTuner
TalentTuner

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

Marc Gravell
Marc Gravell

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

Related Questions