How to implement to create a new directory in a specified path and....?

2009-05-18 Thread Bright
Hi ,all I completed an application about tableview and audio files. Allow you to drag audio files into the tableview . It will play the audio file if you double click the tableview's cell. Now, I want to implement this result. When I drag and drop a sound file into the tableview, I want

RE: How to implement to create a new directory in a specified path and....?

2009-05-18 Thread Chris Gardner
NSString * cPathName;// cPathName is your specified path NSFileManager *fm = [NSFileManager defaultManager]; [fm createDirectoryAtPath:cPathName withIntermediateDirectories:TRUE attributes:nil error:nil]; with which you can create any folder. Date: Mon, 18 May 2009 16:34:24