I have this code:
NSString *logsPath = [dataDirectoryPath stringByAppendingPathComponent:@"Logs"];
Which returns:
/var/mobile/Applications/AAAAAAAA-AAAA-AAAA-AAAA-AAAAAAAAAAAA/Documents/Mobile Documents/Data/Logs
However, doing this:
NSURL *logsURL = [NSURL URLWithString:logsPath];
returns a value of nil.
Any ideas as to why this might be?