如何查找 iPhone 文档文件夹中文件的文件名?

发布于 2024-12-11 15:07:15 字数 221 浏览 0 评论 0原文

如何获取 iPhone SDK 上 Documents 文件夹中文件名的最后一部分。

/Users/user/Library/Application Support/iPhone Simulator/5.0/Applications/apptext/Documents/File.txt

我想要显示 File.txt 的部分,并忽略路径的其余部分,我将如何使用 iPhone 做到这一点SDK?

How do I get the last part of the filename in the Documents folder on the iPhone SDK.

/Users/user/Library/Application Support/iPhone Simulator/5.0/Applications/apptext/Documents/File.txt

I want the part that says File.txt, and ignore the rest of the path, how would I do that using the iPhone SDK?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

贩梦商人 2024-12-18 15:07:15
NSString *path = "/Users/user/Library/Application Support/iPhone Simulator/5.0/Applications/apptext/Documents/File.txt"

NSString *name = [path lastPathComponent];
NSString *path = "/Users/user/Library/Application Support/iPhone Simulator/5.0/Applications/apptext/Documents/File.txt"

NSString *name = [path lastPathComponent];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文