下面的“来源”是装入的光盘映像(dmg),名为“新建”。我正在尝试使用textField字符串和操作重命名它。当我完成操作时,重命名失败,我无法弹出它。该代码适用于标准文件和文件夹。
另外 - 如果我对已安装的光盘映像执行“获取信息”并将其重命名,那么一切正常。
底线是我想使用textField字符串重命名已安装的光盘映像。有人可以解释一下吗?
NSString *source = [@"~/Desktop/New" stringByExpandingTildeInPath];
NSString *newFile = [input stringValue];
NSString *newPath = [[source stringByDeletingLastPathComponent] stringByAppendingPathComponent:newFile];
[[NSFileManager defaultManager] moveItemAtPath:source toPath:newPath error:NULL];
NSLog(@"File renamed to %@", newFile);