码迷,mamicode.com
首页 > 移动开发 > 详细

iOS文件路径相关的方法

时间:2014-12-16 17:16:23      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   io   os   sp   for   on   文件   

文件路径相关的方法在NSPathUtilities中,主要是操作路径

得一个路径

 NSString *documents = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0]; //获得Document的路径<pre name="code" class="objc">//---~~~/Application/43A22272-F08C-4078-93A9-CAF451BF9814/Documents  //~~~是省略写法


NSArray *components = [documents pathComponents]; //路径的每个节点的元素<pre name="code" class="objc">     
     "/",
     Users,
     admin,
     Library,
     Developer,
     CoreSimulator,
     Devices,
     "87AB942E-1A11-479C-8010-1F5C36646658",
     data,
     Containers,
     Data,
     Application,
     "43A22272-F08C-4078-93A9-CAF451BF9814",
     Documents

NSString *lastPathComponent = [documents lastPathComponent]; //最后的一个路径节点元素
    //---Documents

NSString *stringByDeletingLastPathComponent = [documents stringByDeletingLastPathComponent];//删除最后一个路径节点元素
    //---~~~/Application/3B14DAE5-8890-42E1-8DC1-664BB35B6333
NSString *stringByAppendingPathComponent = [documents stringByAppendingPathComponent:@"new.txt"]; //添加一个路径元素
    //---~~~/Application/20FED3FC-859A-4C56-945A-FFEEB17A93A2/Documents/new.txt
NSString *pathExtension = [stringByAppendingPathComponent pathExtension];  //文件的后缀名
    //---txt
NSString *stringByDeletingPathExtension = [stringByAppendingPathComponent stringByDeletingPathExtension]; //去掉后缀名
    //---~~~/Application/20FED3FC-859A-4C56-945A-FFEEB17A93A2/Documents/new
NSString *stringByAppendingPathExtension = [stringByDeletingPathExtension stringByAppendingPathExtension:@"txt"]; //添加后缀名
    //---~~~/Application/20FED3FC-859A-4C56-945A-FFEEB17A93A2/Documents/new.txt
NSString *stringByAbbreviatingWithTildeInPath = [documents stringByAbbreviatingWithTildeInPath];  //变成相对路径,前面的都用波浪号省略
    //--- ~/Documents
NSString *stringByExpandingTildeInPath = [stringByAbbreviatingWithTildeInPath stringByExpandingTildeInPath]; //把相对路径变成绝对路径
NSArray *stringsByAppendingPaths = [documents stringsByAppendingPaths:@[@"a",@"b",@"c.txt"]];  //批量添加多个路径,得到一个路径数组
    //---~~~/Application/16474B22-B287-4F7C-9931-E7454B83822E/Documents/a
    //---~~~/Application/16474B22-B287-4F7C-9931-E7454B83822E/Documents/b
    //---~~~/Application/16474B22-B287-4F7C-9931-E7454B83822E/Documents/c.txt

iOS文件路径相关的方法

标签:style   blog   ar   io   os   sp   for   on   文件   

原文地址:http://blog.csdn.net/lcl130/article/details/41960457

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!