Reputation: 157
I'm new to silver light 4. I need to capture Image from webcam and save into local application folder named 'temp'. When i click save button, the snapshot should save in that folder. I have searched in Google and got samples to save in local machine, but not in the application. please guide me friends. Thanks..
Upvotes: 0
Views: 863
Reputation: 93601
You cannot directly access the file system from Silverlight (at least in normal browser mode). This is a security precaution to stop it being misused.
The exception to that is Isolated Storage, which is a safe area set aside for each Silverlight application to read/write from/to.
This link has some examples you can work though: http://www.silverlight.net/learn/graphics/file-and-local-data/isolated-storage-(silverlight-quickstart)
Upvotes: 1