本文介绍了在Objective C中获取当前目录的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试获取当前目录,但是它给了我DEBUG文件夹的路径,我如何获取当前目录的路径.我正在使用以下代码.
I am trying to get current directory, but its giving me path of DEBUG folder, how i can get the path of current directory. I am using the following code.
NSFileManager *filemgr;
NSString *currentpath;
filemgr = [[NSFileManager alloc] init];
currentpath = [filemgr currentDirectoryPath];
推荐答案
currentDirectoryPath
返回程序的当前工作目录.如果以调试模式从Xcode启动它,则程序的当前目录是调试目录.
currentDirectoryPath
returns the current working directory of the program. If you launch it from Xcode in Debug mode, the current directory of the program is the Debug directory.
这篇关于在Objective C中获取当前目录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!