iOS writeToFile 保存文件到沙盒某目录失败的解决方案

最近想在document/ABC路径下保存一下图片,结果保存失败。于是新增一个路径是否存在的判断,如果ABC不存在则,创建。完美解决了问题。

    if (![[NSFileManager defaultManager] fileExistsAtPath:self.fileBasePath]) {

        [[NSFileManager defaultManager] createDirectoryAtPath:self.fileBasePath withIntermediateDirectories:YES attributes:nil error:nil];

    }

你可能感兴趣的:(iOS writeToFile 保存文件到沙盒某目录失败的解决方案)