如何在我的 iPhones Documents 文件夹中查找文件的文件名?
Posted
技术标签:
【中文标题】如何在我的 iPhones Documents 文件夹中查找文件的文件名?【英文标题】:How do I find filenames of files in my iPhones Documents folder? 【发布时间】:2011-10-23 21:12:51 【问题描述】:如何获取 iPhone SDK 上 Documents 文件夹中文件名的最后一部分。
/Users/user/Library/Application Support/iPhone Simulator/5.0/Applications/apptext/Documents/File.txt
我想要显示 File.txt 的部分,并忽略路径的其余部分,我将如何使用 iPhone SDK 做到这一点?
【问题讨论】:
【参考方案1】:NSString *path = "/Users/user/Library/Application Support/iPhone Simulator/5.0/Applications/apptext/Documents/File.txt"
NSString *name = [path lastPathComponent];
【讨论】:
以上是关于如何在我的 iPhones Documents 文件夹中查找文件的文件名?的主要内容,如果未能解决你的问题,请参考以下文章
当我使用 iPhone 运行项目时如何在 iOS 中使用 sqlite
如何访问 iPhone 应用程序的 Documents 文件夹?