Example #1
0
 /// <summary>
 /// Creates the directory specified in path
 /// </summary>
 /// <param name="path">The directory path to create</param>
 /// <returns>true if directory was created</returns>
 unsafe public bool CreateDirectory(string path)
 {
     return(!(MobileDevice.AFCDirectoryCreate(hAFC, FullPath(CurrentDirectory, path)) != 0));
 }