iphone – NSCachesDirectory不是我文件系统中的目录

iphone – NSCachesDirectory不是我文件系统中的目录,第1张

概述我正试图在我的iPad应用程序的Caches文件夹中存储一些东西. NSArray* cachePathArray = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES); NSString* cachePath = [cachePathArray lastObject]; 当我打印出返 我正试图在我的iPad应用程序的Caches文件夹中存储一些东西.

NSArray* cachePathArray = NSSearchPathForDirectorIEsInDomains(NSCachesDirectory,NSUserDomainMask,YES);    Nsstring* cachePath = [cachePathArray lastObject];@H_419_12@  

当我打印出返回的文件路径时,我得到:

/Users/Gela/library/Application Support/iPhone
Simulator/5.0/Applications/3FF7EB1A-49A9-4B13-ADC4-DF0662BA724B/library/Caches

但是,当我导航到硬盘驱动器上的该文件夹时,“缓存”不是文件夹而是模糊的“文档”文件.

任何想法为什么它不是一个文件夹以及我如何写入我的缓存?

解决方法 也许模拟器没有Caches目录.你在设备上试试这个……

您可以像这样访问Caches目录.我使用这种方法获取文件数据……

- (Nsstring *)getfileData: (Nsstring *)fileDirPath{    NSArray *myPathList = NSSearchPathForDirectorIEsInDomains(NSCachesDirectory,YES);    Nsstring *myPath    = [myPathList  objectAtIndex:0];    NSError *err        = nil;    Nsstring *fData     = @"";    myPath = [myPath stringByAppendingPathComponent:fileDirPath];    if([[NSfileManager defaultManager] fileExistsAtPath:myPath])    {        fData = [Nsstring stringWithContentsOffile:myPath enCoding:NSUTF8StringEnCoding error:&err];        if(err) NSLog(@"getfileData() - ERROR: %@",[err localizedDescription]);    }    else    {        NSLog(@"getfileData() - ERROR: This file '%@' does not exist",myPath);    }    return fData;}@H_419_12@                            	          总结       

以上是内存溢出为你收集整理的iphone – NSCachesDirectory不是我文件系统中的目录全部内容,希望文章能够帮你解决iphone – NSCachesDirectory不是我文件系统中的目录所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1084317.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存