我正在尝试将我的沙盒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
我错过了什么?
答案 0 :(得分:0)
我忘了
#include <pwd.h>
我会留下这个问题以防其他人遇到问题!