如何使用 NSFileManager 重命名文件
我的文档目录中有一个名为 a.caf 的文件。我想在用户输入 UITextField
并按下更改时重命名它(在 UITextField
中输入的文本应该是新文件名)。
我该怎么做?
I have a single file named a.caf in the documents directory. I would like to rename it when user types into a UITextField
and presses change (the text entered in the UITextField
should be the new filename).
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用 moveItemAtPath。
You can use moveItemAtPath.
为了使这个问题保持最新状态,我还添加了 Swift 版本:
To keep this question up-to-date, I'm adding the Swift version as well:
这是 daehan park 转换为 Swift 3 的功能,并可与 Swift 4 和 Swift 一起使用。 5:
This is the function by daehan park to converted to Swift 3 and works with Swift 4 & 5:
使用Swift 2.2
Worked on Swift 2.2