这是我的代码。
var storage = IsolatedStorageFile.GetUserStoreForApplication();
if (!directoryPath.StartsWith("/"))
directoryPath = "/" + directoryPath;
if (!storage.DirectoryExists(directoryPath))
{
storage.CreateDirectory(directoryPath);
}
有时候,当我调用此方法时,我会遇到异常。
[Type]:[IsolatedStorageException]
[ExceptionMessage]:[Unable to create directory.]
我不知道为什么我会得到这个例外。我的代码有问题吗?它工作很好很多次,但有时候我得到例外。
请告诉我代码中的问题。
答案 0 :(得分:0)
我收到此错误消息。事实证明,当我刚刚使用文件夹名称时,我正在使用完整的目录路径。
在我将其更改为最后一个文件夹名称后,它停止抛出此异常。