Retrieve filename from NSURL

The code below should work. Updated it so I removed the top statement. I could’ve used NSString vs const char * or std::string from C++ but thought C Character Pointers would be quite appropriate for this case in point.

Also revamped this so it’s in it’s own concise function:

-(NSString*) extractFile:(const char*) url 
{
    NSURL *yourURL = [NSURL URLWithString:
                     [NSString stringWithCString:url 
                                 encoding:NSUTF8StringEncoding]];
    return [yourURL lastPathComponent];
}

to use:

const char *path_ = "http://www.hdwallpapers.in/walls/honda_v4_concept_widescreen_bike-wide.jpg";
NSLog(@"\t\tYour Extracted file: \n\t%@", [self extractFile:path_]);

Leave a Comment