MAC 下 用 OC 制作简单的脚本
int main(int argc, const char * argv[]) {
@autoreleasepool {
NSFileManager *fileManager = [NSFileManager defaultManager];
//在这里获取应用程序Documents文件夹里的文件及文件夹列表
NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentDir = [documentPaths objectAtIndex:0];
NSError *error = nil;
NSArray *fileList = [[NSArray alloc] init];
//fileList便是包含有该文件夹下所有文件的文件名及文件夹名的数组
fileList = [fileManager contentsOfDirectoryAtPath:documentDir error:&error];
// 以下这段代码则可以列出给定一个文件夹里的所有子文件夹名
NSMutableArray *fileArray = [[NSMutableArray alloc] init];
//在上面那段程序中获得的fileList中列出文件夹名
for (NSString *file in fileList) {
NSString *path = [documentDir stringByAppendingPathComponent:file];
if ([path hasSuffix:@".png"]) {
[fileArray addObject:path];
}
}
NSLog(@"Every Thing in the dir:%@",fileList);
NSLog(@"All folders:%@",fileArray);
for (int i = 0; i < fileArray.count; i++) {
NSString *filePath = fileArray[i];
NSString *toPath = [NSString stringWithFormat:@"%@/tree%d.png", documentDir,i+1];
[fileManager copyItemAtPath:filePath toPath:toPath error:nil];
}
}
return 0;
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。