• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Writing NSString to a file
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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
References: 
 >Writing NSString to a file (From: dinu john <email@hidden>)

  • Prev by Date: Command-click table in background app SOLVED
  • Next by Date: Re: Writing NSString to a file
  • Previous by thread: Writing NSString to a file
  • Next by thread: Re: Writing NSString to a file
  • Index(es):
    • Date
    • Thread