MBZ
MBZ

Reputation: 27592

Supported data types and size limit for ApplicationData

It seems that it is not possible to store any kind of data in Windows.Storage.ApplicationData. It also has a size limit.

Upvotes: 1

Views: 669

Answers (1)

siger
siger

Reputation: 3162

Windows.Storage.ApplicationData gives you access to multiple sources of data. Files and settings stored locally, in the cloud, and a temporary folder.

Check out the API documentation here: http://msdn.microsoft.com/library/windows/apps/BR241587

Here you have samples of how to store data in local sources: http://msdn.microsoft.com/en-US/library/windows/apps/hh465118

For local/roaming storage:

  • Use Windows.Storage.ApplicationData.roamingStorageQuota for the maximum size limit (in KB).
  • You store files

For local/roaming settings:

Upvotes: 1

Related Questions