NSFilemanager 返回一级目录?

发布于 2024-09-19 16:51:39 字数 167 浏览 8 评论 0原文

我想知道在使用 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 技术交流群。

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

发布评论

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

评论(2

思念绕指尖 2024-09-26 16:51:39

如果您想要做的只是获取表示父目录路径的字符串,那么您可以这样做:

NSString* parentPath = [[[NSFileManager defaultManager] currentDirectoryPath] stringByDeletingLastPathComponent];

如果您确实想更改到父目录,则只需:

[[NSFileManager defaultManager] changeCurrentDirectoryPath:@".."];

If what you're trying to do is just obtain the string representing the path of the parent directory then you could do this:

NSString* parentPath = [[[NSFileManager defaultManager] currentDirectoryPath] stringByDeletingLastPathComponent];

If you actually want to change to the parent directory, then just:

[[NSFileManager defaultManager] changeCurrentDirectoryPath:@".."];
一个人的旅程 2024-09-26 16:51:39

当然,只需使用 NSString 中的stringByDeletingLastPathComponent 方法。根据你的问题,你会做类似的事情:

NSFileManager* fileManager = [NSFileManager defaultManager];
NSString* currentDirectoryPath = [fileManager currentDirectoryPath];
NSString* previousDirectory = [currentDirectoryPath stringByDeletingLastPathComponent];

Sure, just use the stringByDeletingLastPathComponent method in NSString. As per your question, you'd do something like:

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