Re: creating files to write data to?
Re: creating files to write data to?
- Subject: Re: creating files to write data to?
- From: Ondra Cada <email@hidden>
- Date: Fri, 12 Mar 2004 00:37:49 +0100
Ken,
On Thursday, Mar 11, 2004, at 23:51 Europe/Prague, Ken Hawkins wrote:
how can i create a 0 length file that i will throughout the processes
of my app write data to. this is mixed string and binary data.
Do you insist on this workflow?
In a vast majority of cases you just write the complete file
atomically, like
NSData *d=... the contents of file computed somehow ...
[d writeToFile:FILENAME atomically:YES];
Nevertheless, you can use NSFileHandle
NSString *fname=...;
[@"" writeToFile:fname atomically:NO]; // create the empty file
NSFileHandle *fh=[NSFileHandle fileHandleForWritingAtPath:fname];
...
[fh writeData:... partial contents of file computed somehow ...]; //
as many times as you want to
...
[fh closeFile];
---
Ondra Hada
OCSoftware: email@hidden
http://www.ocs.cz
private email@hidden
http://www.ocs.cz/oc
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.