On Thu, May 22, 2008 at 8:12 AM, Wayne Shao <[EMAIL PROTECTED]> wrote: > I could only fine mkdir() in C. Is there anything in Cocoa? I don't think > mkdir() can handle NSString. I need to include Chinese characters in my > directory name.
Other have answered your primary question, I just want to address this last bit. The -fileSystemRepresentation method exists precisely for this. It gives you a C string encoded properly (using UTF-8, to be specific) so that the string can be passed to POSIX functions which expect a path. You can bet that the Cocoa solutions given will eventually call down to mkdir() or another similar function which also takes a C string. That said, if you prefer the Cocoa solution there's no reason not to use it, just be aware that you can easily use the C functions yourself as well. Mike _______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [EMAIL PROTECTED]
