问题如下
在 iOS10.3 设备上创建的是两个文件,在 iOS10.3 以下设备上创建的是一个文件,是不是苹果 iOS 新文件系统 APFS 换了编码了?还是忘了写转换函数?求高手指点。。。
char n[] = {0x72, 0x69, 0xcc, 0x81, 0x61, 0x2e, 0x63, 0x0};
char nn[] = {0x72, 0xc3, 0xad, 0x61, 0x2e, 0x63, 0x0};
NSString *docPath = [NSHomeDirectory() stringByAppendingString:@"/Documents/"];
const char *p = [docPath cStringUsingEncoding:NSUTF8StringEncoding];
char tmp[1024] = {0};
strcpy(tmp, p);
strcat(tmp, n);
FILE *fn = fopen(tmp, "wb+");
fclose(fn);
char tmp1[1024] = {0};
strcpy(tmp1, p);
strcat(tmp1, nn);
FILE *fnn = fopen(tmp1, "wb+");
fclose(fnn);
我该如何解决这个问题。。。