Re: Writing NSString to a file
Re: Writing NSString to a file
- Subject: Re: Writing NSString to a file
- From: Horst Hoesel <email@hidden>
- Date: Thu, 1 Jun 2006 15:11:42 +0200
Am 01.06.2006 um 11:27 schrieb dinu john:
Thanks in advance
What is wrong with this code ?
Code is compiling and working fine (Creating the temp.rtf ) but
when i accessing the temp.rtf file ,
error displaying "temp.rtf couldnot be opened" What is the reson ?
am i want to add anything else for writing a string to
file ?
Dinu
-(void) __WriteString
{
NSString *m_TestStr;
NSFileManager *FlMgr;
FlMgr=[NSFileManager defaultManager];
m_TestStr=@"/Users/Dinu/Desktop/Temp";
[FlMgr createDirectoryAtPath:m_TestStr attributes:nil];
m_TestStr=@"/Users/Dinu/Desktop/Temp/temp.rtf";
NSString *myString = @"Hello From DinuJohn";
const char *utfString = [myString UTF8String];
NSData *myDat = [NSData dataWithBytes: utfString length: strlen
(utfString)];
m_Flag=[FlMgr createFileAtPath:m_TestStr contents:myDat
attributes:nil];
if(m_Flag)
{
NSRunAlertPanel(@"Info",@"The File Created",nil,nil,nil);
}
}
Hi Dinu,
you are not creating a wellformed rtf file. In other words what you
create is a plain-text file, but put a .rtf extension to it. You
should use .txt instead.
Cheers,
Horst
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden