删除隔离的存储文件

时间:2010-11-16 21:19:40

标签: c# silverlight windows-phone-7

我知道这可能听起来非常苛刻,所以提前抱歉,但我正在学习,我花了近2个小时试图找出如何做到这一点,但没有结果......

我想知道如何从windows phone 7中的独立存储中删除特定文件。

提前致谢!

4 个答案:

答案 0 :(得分:10)

只需致电IsolatedStorageFile.DeleteFile

例如:

IsolatedStorageFile storage = IsolatedStorageFile.GetUserStoreForApplication();
storage.DeleteFile("backup.bak");

答案 1 :(得分:5)

使用IsolatedStorageFile.DeleteFile

using(var store = IsolatedStorageFile.GetUserStoreForApplication())
    store.DeleteFile("path.txt");

答案 2 :(得分:2)

// you should add here try / catch blocks

using (IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForApplication())
{
store.DeleteFile("Your file Name string");
}

您可以在这里查看课程: MSDN IsolatedStorageFile Class

答案 3 :(得分:0)

只是添加到现有答案:记住捕获IsolatedStorageException而不是您可能习惯的IOException。