Gordon Wilson
Gordon Wilson

Reputation: 26384

Monitoring storage space on windows mobile

In a native(c++) windows mobile app. There are ways to be notified of low memory, WM_HIBERNATE, and low power, RequestPowerNotifications().

Is there any way to be notified when storage space is running low? Or must an app just poll regularly with GetDiskFreeSpaceEx()?

Upvotes: 0

Views: 157

Answers (1)

ctacke
ctacke

Reputation: 67178

No, there are no system notifications for storage space.

Upvotes: 2

Related Questions