  char dir[PATH_MAX],*ptr=dir;
for (int i=0; i<[path length]; i++) {
    int asciiCode = [path characterAtIndex:i];
  asciiCode&=0x7f;
  *ptr++=asciiCode;
  }
  *ptr++='\0';
