当前位置:  开发笔记 > 编程语言 > 正文

在Cocoa中重命名文件?

如何解决《在Cocoa中重命名文件?》经验,为你挑选了3个好方法。

如何重命名文件,将文件保存在同一目录中?

我有一个包含文件完整路径的字符串,以及一个包含新文件名(没有路径)的字符串,例如:

NSString *old_filepath = @"/Volumes/blah/myfilewithrubbishname.avi";
NSString *new_filename = @"My Correctly Named File.avi";

我知道NSFileManager的movePath:toPath:handler:方法,但是我无法研究如何构造新文件的路径..

基本上我正在寻找相当于以下Python代码:

>>> import os
>>> old_filepath = "/Volumes/blah/myfilewithrubbishname.avi"
>>> new_filename = "My Correctly Named File.avi"
>>> dirname = os.path.split(old_filepath)[0]
>>> new_filepath = os.path.join(dirname, new_filename)
>>> print new_filepath
/Volumes/blah/My Correctly Named File.avi
>>> os.rename(old_filepath, new_filepath)

Marc Charbon.. 36

NSFileManager和NSWorkspace都有文件操作方法,但NSFileManager - (BOOL)movePath:(NSString *)source toPath:(NSString *)destination handler:(id)handler可能是你最好的选择.使用NSString的路径操作方法来获取正确的文件和文件夹名称.例如,

NSString *newPath = [[oldPath stringByDeletingLastPathComponent] stringByAppendingPathComponent:newFilename];
[[NSFileManager defaultManager] movePath:oldPath toPath:newPath handler:nil];

这两个类在文档中都有很好的解释,但是如果有任何你不理解的话,请留下评论.



1> Marc Charbon..:

NSFileManager和NSWorkspace都有文件操作方法,但NSFileManager - (BOOL)movePath:(NSString *)source toPath:(NSString *)destination handler:(id)handler可能是你最好的选择.使用NSString的路径操作方法来获取正确的文件和文件夹名称.例如,

NSString *newPath = [[oldPath stringByDeletingLastPathComponent] stringByAppendingPathComponent:newFilename];
[[NSFileManager defaultManager] movePath:oldPath toPath:newPath handler:nil];

这两个类在文档中都有很好的解释,但是如果有任何你不理解的话,请留下评论.


movePath:toPath:handler:不推荐使用moveItemAtPath:toPath:error:,如果失败,它实际上会告诉你*为什么*它失败了.

2> Martin Gordo..:

值得注意的是,将文件移动到自身将失败.我有一个方法用下划线替换空格,并使文件名小写,并将文件重命名为新名称.名称中只有一个单词的文件将无法重命名,因为新名称在不区分大小写的文件系统上是相同的.

我解决这个问题的方法是进行两步重命名,首先将文件重命名为临时名称,然后将其重命名为预期名称.

一些伪代码解释了这个:

NSString *source = @"/FILE.txt";
NSString *newName = [[source lastPathComponent] lowercaseString];
NSString *target = [[oldPath stringByDeletingLastPathComponent] stringByAppendingPathComponent:newName];

[[NSFileManager defaultManager] movePath:source toPath:target error:nil]; // <-- FAILS

解决方案:

NSString *source = @"/FILE.txt";
NSString *newName = [[source lastPathComponent] lowercaseString];

NSString *temp = [[oldPath stringByDeletingLastPathComponent] stringByAppendingPathComponent:[NSString stringWithFormat:@"%@-temp", newName]];
NSString *target = [[oldPath stringByDeletingLastPathComponent] stringByAppendingPathComponent:newName];

[[NSFileManager defaultManager] movePath:source toPath:temp error:nil];
[[NSFileManager defaultManager] movePath:temp toPath:target error:nil];



3> Brock Woolf..:

我只是想让新手更容易理解.这是所有代码:

    NSString *oldPath = @"/Users/brock/Desktop/OriginalFile.png";
NSString *newFilename = @"NewFileName.png";

NSString *newPath = [[oldPath stringByDeletingLastPathComponent] stringByAppendingPathComponent:newFilename];
[[NSFileManager defaultManager] movePath:oldPath toPath:newPath handler:nil];

NSLog( @"File renamed to %@", newFilename );

推荐阅读
135369一生真爱_890
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有