我知道这听起来可能是非常nooby,所以很抱歉提前,但我正在学习,我花了近2个小时试图找出如何做到这一点,现在没有结果…
我想知道如何从WindowsPhone7的独立存储中删除一个特定的文件。
提前谢谢!
最佳答案
只需调用IsolatedStorageFile.DeleteFile
。
例如:
IsolatedStorageFile storage = IsolatedStorageFile.GetUserStoreForApplication();
storage.DeleteFile("backup.bak");