NSFilemanager 返回一级目录?
我想知道在使用 NSFileManager 时是否有办法获取上一个目录... 这可以通过将“..”附加到当前目录来完成 ([[NSFileManager defaultManager] currentDirectoryPath] ) ,但这根本不是一个好主意:(
是否有另一种有效的方法来做到这一点?
i want to know if there is a way to get the previous directory when working with NSFileManager...
This can be probably done by appending '..' to the current directory
([[NSFileManager defaultManager] currentDirectoryPath] ) , but it's not a good idea at all :(
Is there another effective way to do this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想要做的只是获取表示父目录路径的字符串,那么您可以这样做:
如果您确实想更改到父目录,则只需:
If what you're trying to do is just obtain the string representing the path of the parent directory then you could do this:
If you actually want to change to the parent directory, then just:
当然,只需使用
NSString
中的stringByDeletingLastPathComponent
方法。根据你的问题,你会做类似的事情:Sure, just use the
stringByDeletingLastPathComponent
method inNSString
. As per your question, you'd do something like: