Thanks all for the responses! On Wed, May 21, 2008 at 6:14 PM, Michael Ash <[EMAIL PROTECTED]> wrote:
> 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. > This is very useful. I am so used to C++/C and I am now thinking to re-factor portion of my first app to a C++ library (except for the nib/controller related methods). > > 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/wshao99%40gmail.com > > This email sent to [EMAIL PROTECTED] > -- Wayne Shao _______________________________________________ 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]
