Question

I have a NSPathControl in my app for the user to select a file on his hard disk.

I am trying to use

-(IBAction) clickedPath:(id) sender {

NSString *string=[[NSString alloc] initWithFormat:[[pathControl clickedPathComponentCell] stringValue]];

NSLog (@"%@", string);

}

But this outputs only the filename. How can I get the full path to the file?

Thanks in advance!

Was it helpful?

Solution

Try using the URL property:

- NSString *string=[[pathControl URL] path];
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top