Create a file: Difference between revisions

Content deleted Content added
Line 465:
 
[fm createFileAtPath:@"output.txt" contents:[NSData data] attributes:nil];
# Pre-OS X 10.5
[fm createDirectoryAtPath:@"docs" attributes:nil];</lang>
# OS X 10.5+
[fm createDirectoryAtPath:@"docs" withIntermediateDirectories:NO attributes:nil error:NULL];</lang>
 
=={{header|Objeck}}==