我是靠谱客的博主 自觉乌龟,最近开发中收集的这篇文章主要介绍stringByAppendingPathComponent和stringByAppendingString 的区别stringByAppendingPathComponent和stringByAppendingString 的区别,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

 

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”。




转载于:https://www.cnblogs.com/LiLihongqiang/p/5912683.html

最后

以上就是自觉乌龟为你收集整理的stringByAppendingPathComponent和stringByAppendingString 的区别stringByAppendingPathComponent和stringByAppendingString 的区别的全部内容,希望文章能够帮你解决stringByAppendingPathComponent和stringByAppendingString 的区别stringByAppendingPathComponent和stringByAppendingString 的区别所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部