home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / WebObjectsDoc_HTML / Reuse / ReusableComponentsEx / FileString.wo / FileString.wos < prev   
Encoding:
Text File  |  1996-03-01  |  219 b   |  13 lines

  1. ////////////////////////
  2. //  FileString
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6. id pathName;
  7.  
  8. - fileContents
  9. {
  10.     id aContentsString = [NSString stringWithContentsOfFile:pathName];
  11.     return aContentsString;
  12. }
  13.