• 【iOS】路径获取


    【问题描述】

    iOS应用中,主要有两种路径,一是Documents目录(即应用安装的路径),二是Bundle路径(即应用程序束)

    一、获取Documents路径

    - (NSString *)filePathInDoc:(NSString *)filename
    {
        NSArray *paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);
        NSString *documentDirectory=[paths objectAtIndex:0];
        return [documentDirectory stringByAppendingPathComponent:filename];
    }

    那么获取Doc目录下的文件Text.txt,如下:

    [self filePathInDoc:@"Text.txt"];

    二、获取Bundle路径

    - (NSString *)getFilePathInBundle:(NSString *)filename
    {
        NSString *nameWithoutExt = [filename stringByDeletingPathExtension];
        NSString *ext = [filename pathExtension];
        return [[NSBundle mainBundle] pathForResource:nameWithoutExt ofType:ext];
    }

    //- (NSString *)filePathInBundle:(NSString *)filename
    //{
    //    int index = -1;
    //    
    //    for (int loop = [filename length] - 1; loop >= 0; loop--)
    //    {
    //        if ([filename characterAtIndex:loop] == '.')
    //        {
    //            index = loop;
    //            break;
    //        }
    //    }
    //    
    //    if (index == -1)
    //    {
    //        return nil;
    //    }
    //    
    //    NSString *filenameWithoutExt = [filename substringToIndex:index];
    //    NSString *ext = [filename substringFromIndex:index + 1];
    //    NSString *path = [[NSBundle mainBundle] pathForResource:filenameWithoutExt ofType:ext];
    //    return path;
    //}

    那么获取Bundle下的Text.txt文件,如下:

    [self filePathInBundle:@"Text.txt"];

  • 相关阅读:
    int是逻辑炸弹吗?
    悲剧
    下班啦
    Android SDK 2.2 开发环境安装
    MVC
    用于主题检测的临时日志(61d47e0cd5874842a9f56a725c1f25f6 3bfe001a32de4114a6b44005b770f6d7)
    ASP.NET读取XML文件
    asp.net执行顺序
    理解POCO
    乐观中谨慎 招聘调薪现"贫富差距"
  • 原文地址:https://www.cnblogs.com/ftrako/p/2766884.html
Copyright © 2020-2023  润新知