尝试在Windows Phone应用程序中创建目录时获取IsolatedStorageException

时间:2014-10-06 13:35:24

标签: windows-phone-8 windows-phone isolatedstorage isolatedstoragefile

这是我的代码。

var storage = IsolatedStorageFile.GetUserStoreForApplication();
if (!directoryPath.StartsWith("/"))
            directoryPath = "/" + directoryPath;

if (!storage.DirectoryExists(directoryPath))
{
    storage.CreateDirectory(directoryPath);
}

有时候,当我调用此方法时,我会遇到异常。

[Type]:[IsolatedStorageException]    
[ExceptionMessage]:[Unable to create directory.]

我不知道为什么我会得到这个例外。我的代码有问题吗?它工作很好很多次,但有时候我得到例外。

请告诉我代码中的问题。

1 个答案:

答案 0 :(得分:0)

我收到此错误消息。事实证明,当我刚刚使用文件夹名称时,我正在使用完整的目录路径。

在我将其更改为最后一个文件夹名称后,它停止抛出此异常。