Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7794191
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T22:42:39+00:00 2026-06-01T22:42:39+00:00

How can I get the directory path of other application from process pid? Seems

  • 0

How can I get the directory path of other application from process pid?

Seems that there is no proc_pidpath calls on iOS.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T22:42:40+00:00Added an answer on June 1, 2026 at 10:42 pm

    The following works on iOS and uses sysctl which applications like Activity Monitor Touch are using in the App Store so should be acceptable to Apple. However, what you intend to do with the path once you’ve got it might not be acceptable to Apple. If you aren’t intending to submit your app to the App Store then it is probably a non-issue.

    - (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);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a function in XSLT that can takes in a directory path and
How can I get the current working directory and get the path without the
How can you get the directory of the script that was run and use
How can I get the distinguished name from Active Directory of the currently logged
With the environment variable %allusersprofile% I can get the directory where common settings are
How can I get a reference to the directory of the visual studio project
How can I get a full list of Groups in my Active Directory?
How can I get all sub-directories of a given directory without files, . (current
How can I get the name of a file in a directory on unix
How do you get a list of files within a directory so each can

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.