3

如何从进程pid中获取其他应用程序的目录路径?</p>

似乎 iOS 上没有 proc_pidpath 调用。

4

2 回答 2

3

以下适用于 iOS 并使用sysctlApp Store 中使用的 Activity Monitor Touch 等应用程序,因此 Apple 应该可以接受。但是,一旦获得了路径,您打算如何处理它可能不会被 Apple 接受。如果您不打算将您的应用程序提交到 App Store,那么这可能不是问题。

- (NSString *)pathFromProcessID:(NSUInteger)pid {

    // First ask the system how big a buffer we should allocate
    int mib[3] = {CTL_KERN, KERN_ARGMAX, 0};

    size_t argmaxsize = sizeof(size_t);
    size_t size;

    int ret = sysctl(mib, 2, &size, &argmaxsize, NULL, 0);

    if (ret != 0) {
        NSLog(@"Error '%s' (%d) getting KERN_ARGMAX", strerror(errno), errno);            

        return nil;
    }

    // Then we can get the path information we actually want
    mib[1] = KERN_PROCARGS2;
    mib[2] = (int)pid;

    char *procargv = malloc(size);

    ret = sysctl(mib, 3, procargv, &size, NULL, 0);

    if (ret != 0) {
        NSLog(@"Error '%s' (%d) for pid %d", strerror(errno), errno, pid);            

        free(procargv);

        return nil;
    }

    // procargv is actually a data structure.  
    // The path is at procargv + sizeof(int)        
    NSString *path = [NSString stringWithCString:(procargv + sizeof(int))
                                        encoding:NSASCIIStringEncoding];

    free(procargv);

    return(path);
}
于 2012-04-15T06:42:07.577 回答
0

iOS 上的东西比这更受限制。如果您希望在应用程序之间共享文件,请考虑使用 iCloud - 它允许您跨不同平台甚至不同应用程序访问文件,因为应用程序所属的开发人员 ID 是相同的。Ray Wenderlich 写了一个有用的教程。祝你好运!

于 2012-04-15T06:39:01.030 回答