gpt4 book ai didi

iphone - 文件名最大长度

转载 作者:行者123 更新时间:2023-12-03 18:23:12 26 4
gpt4 key购买 nike

我使用下面的代码将图像保存在 NSDocumentDirectory

-(BOOL)saveImage:(UIImage *)image name:(NSString *)name{

NSString *dir = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *path = [NSString pathWithComponents:[NSArray arrayWithObjects:dir, name, nil]];

BOOL ok = [[NSFileManager defaultManager] createFileAtPath:path contents:nil attributes:nil];

if (!ok) {
NSLog(@"Error creating file %@", path);
}
else {
NSFileHandle* myFileHandle = [NSFileHandle fileHandleForWritingAtPath:path];
[myFileHandle writeData:UIImagePNGRepresentation(image)];
[myFileHandle closeFile];
}
return ok;
}

名称通常是下载图像的 URL。

文件名长度有限制吗?你知道有时网址可能会超长...

谢谢

最佳答案

查看 syslimits.h:91 中的 PATH_MAX 常量

... 
#define PATH_MAX 1024 /* max bytes in pathname */
...

您可以通过执行以下操作自行测试:

NSLog(@"%i", PATH_MAX);

只是为了确定。

关于iphone - 文件名最大长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6581433/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com