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。dir内のファイルの名前を取得します。2.すべてのファイルを繰り返し、moveItemAtPathを使用して名前を変更します。