博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
stringByAppendingPathComponent和stringByAppendingString 的区别
阅读量:6091 次
发布时间:2019-06-20

本文共 907 字,大约阅读时间需要 3 分钟。

 

stringByAppendingPathComponent和stringByAppendingString 的区别

 

stringByAppendingPathComponent

 

 
  1. NSString * filePath3 = [documentsPath stringByAppendingPathComponent:@"Dictionary"];  

 

stringByAppendingString

 

 
  1. NSString * filePath = [documentsPath stringByAppendingString:@"/hello.txt"];  

两者比较  

1、后者需要加"/" ,前者不需要加

2、前者路径打印出来:/Users/MyMacBook/Library/Developer/CoreSimulator/Devices/C1B4AFE9-2058-40A6-B868-101E166FF961/data/Containers/Data/Application/79CB8A9F-1000-4360-A9EA-801ADF1E0044/Documents/DataBase.sqlite

      后者路径打印出来:/Users/MyMacBook/Library/Developer/CoreSimulator/Devices/C1B4AFE9-2058-40A6-B868-101E166FF961/data/Containers/Data/Application/79CB8A9F-1000-4360-A9EA-801ADF1E0044/Documents

 

stringByAppendingPathComponent

就是将前面的路径格式和后面的普通的字符串格式链接在一起,并且以路径格式返回。

例如:获取程序家目录NSString *path =NSHomeDirectory();获取后的path是"/root/User/";执行

path = [path stringByAppendingPathComponent:@"abc.txt"];后path为“/root/User/abc.txt”。

转载地址:http://hbmwa.baihongyu.com/

你可能感兴趣的文章
onix-文件系统
查看>>
java.io.Serializable浅析
查看>>
我的友情链接
查看>>
多线程之线程池任务管理通用模板
查看>>
CSS3让长单词与URL地址自动换行——word-wrap属性
查看>>
CodeForces 580B Kefa and Company
查看>>
开发规范浅谈
查看>>
Spark Streaming揭秘 Day29 深入理解Spark2.x中的Structured Streaming
查看>>
鼠标增强软件StrokeIt使用方法
查看>>
本地连接linux虚拟机的方法
查看>>
某公司面试java试题之【二】,看看吧,说不定就是你将要做的题
查看>>
BABOK - 企业分析(Enterprise Analysis)概要
查看>>
Linux 配置vnc,开启linux远程桌面
查看>>
CentOS6.4关闭触控板
查看>>
React Native 极光推送填坑(ios)
查看>>
Terratest:一个用于自动化基础设施测试的开源Go库
查看>>
修改Windows远程终端默认端口,让服务器更安全
查看>>
扩展器必须,SAS 2.0未必(SAS挺进中端存储系统之三)
查看>>
Eclipse遇到Initializing Java Tooling解决办法
查看>>
while((ch = getchar()) != '\n')
查看>>