如何在我的mac应用程序中使用getpwuid?

时间:2012-06-09 00:03:41

标签: macos mac-app-store getpwuid

我正在尝试将我的沙盒mac应用程序转到用户的真实主文件夹。

这就是我试过的

const char *home = getpwent()->pw_dir;
NSString *path = [[NSFileManager defaultManager] 
              stringWithFileSystemRepresentation:home
              length:strlen(home)];
NSURL *url = [NSURL fileURLWithPath:path isDirectory:YES];

但是我收到了这个错误:

Member reference type 'int' is not a pointer

我错过了什么?

1 个答案:

答案 0 :(得分:0)

我忘了

 #include <pwd.h>

我会留下这个问题以防其他人遇到问题!