I need to use the writeToFile: methods in writing data (that is encrypted) to a file. However, say I have:

NSData *encryptedData = [data AES256EncryptWithKey:key];

And I write the encryptedData to a file by:

[encryptedData writeToFile:@"file.txt" automatically:YES];

This for some reason does not write the data to "file.txt." This is a very simple question and I know I am missing something super basic. If file.txt is not actually there, it must be created.

Thank You

link|improve this question

What do you mean by "does not write"? Does a file named file.txt appear in the executable's directory? – Etienne de Martel Aug 22 '11 at 22:58
I need "file.txt" to show up in my desktop and in the documents folder. Sorry, I was not very clear – TwoDumpling Aug 22 '11 at 23:01
feedback

2 Answers

up vote 2 down vote accepted

This probably has nothing to do with Cocoa or NSData.

On Unix (like Mac OS X), paths that start with / are absolute. Paths that start with ~ are relative to the current user's home directory. Anything else (such as file.txt) is relative to the current directory. When running something from Xcode, that is the path of the executable (the compiler's output path).

So, to write that to the desktop, that would be:

[encryptedData writeToFile:@"~/Desktop/file.txt" atomically:YES];

For the documents folder, that would be:

[encryptedData writeToFile:@"~/Documents/file.txt" atomically:YES];

Don't forget that paths are also case-sensitive.

link|improve this answer
Yes I know, I've edited it. I incorrectly copied and pasted from my project. However, it still does not do anything. – TwoDumpling Aug 22 '11 at 22:53
@Bobby There, I changed my answer. – Etienne de Martel Aug 22 '11 at 23:14
This did not work for me. Any idea why? – TwoDumpling Aug 22 '11 at 23:23
3  
Hard coding paths is a bad idea. Try this: [[NSHomeDirectory() stringByAppendingPathComponent:@"Desktop"] stringByAppendingPathComponent:@"file.txt"] – Rob Keniger Aug 23 '11 at 0:29
You need to call stringByAppendingTildeInPath maybe? Or else expand the tilde yourself just to test if it works. – Kristof Van Landschoot Aug 23 '11 at 7:20
show 3 more comments
feedback
- (BOOL)writeToFile:(NSString *)path atomically:(BOOL)flag

returns a boolean to say if it was successful or not. I'd start there, if you see a YES then the file wrote somewhere successfully.

If that doesn't work then i'd double check the object you're trying to encode supports the NSCoding protocol. If you object doesn't support NSCoding take a look at this blog post for a nifty simple way of adding it.

Also its "atomically" not "automatically" :)

link|improve this answer
Thank you for the answer Aaron, I'll try this out. – TwoDumpling Aug 22 '11 at 23:33
feedback

Your Answer

 
or
required, but never shown

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