Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Please select a accepted answer or submit your own if you found the answer. – Sam Baumgarten Dec 25 '12 at 2:22

2 Answers

Try using +fileURLWithPath: instead.

Because +URLWithString: expects a protocol (e.g. http://, https://, file://), it cannot build a URL.

On the other hand, +fileURLWithPath: just takes the raw path, and automatically appends the file:// protocol to the path you supply.

share|improve this answer

[NSURL urlWithString:logsPath] expects for the url to start with https:// or http://. [dataDirectoryPath stringByAppendingPathComponent:@"Logs"]; returns a path and not a URL. To fix this use [NSURL fileURLWithPath:logsPath]. This will add file:// to the beginning of the URL making it work. Your full code will look like this:

NSString *logsPath = [dataDirectoryPath stringByAppendingPathComponent:@"Logs"];
NSURL *logsURL = [NSURL fileURLWithPath:logsPath];

Best of luck!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.