我想将.pdf文件保存在iphone的文档目录中,但有一些客户端扩展名。 即Test.pdf文件存储在文档目录中,作为Test.pdf1。而当我检索该pdf文件时,它将以适当的pdf格式显示我。 请有任何想法的人请回复。 提前谢谢。
答案 0 :(得分:1)
NSString *oldPath = @".../123.pdf";
NSString *newPath = [[oldPath stringByDeletingLastPathComponent] stringByAppendingPathComponent:@"123.pdf1"];
[[NSFileManager defaultManager] moveItemAtPath:oldPath toPath:newPath error:nil];