首页 > 其他 > 详细

获取文件路径

时间:2015-11-01 22:55:27      阅读:378      评论:0      收藏:0      [点我收藏+]
#import "NSString+WJ.h"

@implementation NSString (WJ)

- (instancetype)cacheDir
{
    //1.获取Caches目录
    NSString *path = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
    
    //2.生成绝对路径
    
    return [path stringByAppendingPathComponent:[self lastPathComponent]];

}

-(instancetype)docDir
{
    
    NSString *path = [NSSearchPathForDirectoriesInDomains(NSDocumentationDirectory, NSUserDomainMask, YES) lastObject];
    
    return [path stringByAppendingPathComponent:[self lastPathComponent]];
}


- (instancetype)tmpDir
{
    NSString *path = NSTemporaryDirectory();
    
    return [path stringByAppendingPathComponent:[self lastPathComponent]];

}

@end

获取文件路径

原文:http://my.oschina.net/codebywj/blog/524642

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!