• 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
Writing NSString to a file
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Writing NSString to a file


  • Subject: Writing NSString to a file
  • From: dinu john <email@hidden>
  • Date: Thu, 1 Jun 2006 02:27:48 -0700

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);
}
}


_______________________________________________
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


  • Follow-Ups:
    • Re: Writing NSString to a file
      • From: Paul Lynch <email@hidden>
    • Re: Writing NSString to a file
      • From: Jeff Hawkins <email@hidden>
    • Re: Writing NSString to a file
      • From: Horst Hoesel <email@hidden>
  • Prev by Date: Bindings/selecting row in tableview
  • Next by Date: Re: Bindings/selecting row in tableview
  • Previous by thread: Re: Bindings/selecting row in tableview
  • Next by thread: Re: Writing NSString to a file
  • Index(es):
    • Date
    • Thread