Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要删除某个目录中 100 多个文件名称的前 4 个字符,我可以使用 obj-c 程序或 ac ++ 程序执行此操作吗?如果可以,如何操作?
是的你可以。
该类NSFileManager提供了您需要的所有方法。
NSFileManager
要获取目录的内容,请使用该contentsOfDirectoryAtPath方法。要重命名文件,您需要使用该moveItemAtPath方法。
contentsOfDirectoryAtPath
moveItemAtPath
看看类参考https://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSFileManager_Class/Reference/Reference.html
步骤: 1. 获取目录中文件的名称。2.迭代所有文件,使用moveItemAtPath重命名。