沙盒目录
(1)返回沙盒目录(home家)
NSString * path = NSHomeDirectory();
(2)MD5 根据文件的url 加密生成文件名,保证文件的唯一性
NSString * fileName = [self.fileUrl stringFromMD5];
(3)完整的文件路径
path = [path stringByAppendingPathComponent:[NSString stringWithFormat:@"Documents/%@",fileName]];
原文:http://www.cnblogs.com/gaduo/p/5001843.html