ganesh m
ganesh m

Reputation: 157

save Image in application in silverlight

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

Answers (1)

iCollect.it Ltd
iCollect.it Ltd

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

Related Questions