Hi All,
Use this below Function to do the same.
public static long GetDeviceRemainingSpace()
{
using (var store = IsolatedStorageFile.GetUserStoreForApplication())
{
return store.AvailableFreeSpace;
}
}
Use this below Function to do the same.
public static long GetDeviceRemainingSpace()
{
using (var store = IsolatedStorageFile.GetUserStoreForApplication())
{
return store.AvailableFreeSpace;
}
}
No comments:
Post a Comment