NSData's writeToFile method failing with server address
- by Ricky
Hi.
I am trying to write an NSData object to a directory like so;
[myData writeToFile:[NSString stringWithFormat:@"%@/%@.txt", path, filename] atomically:YES];
I receive no errors or warnings but I am assuming the write fails because the path variable has the format of afp://10.0.0.20/username/Desktop. I am connected to the networked share.
Do I need to modify the string or take a different approach here?
TIA,
Ricky.