NSFileManager *fileManager= [[NSFileManager alloc]init];
NSDirectoryEnumerator *myEnumerator= [fileManager enumeratorAtPath:[[theFolder URLByDeletingLastPathComponent]path]];
int f,size=0;
NSMutableArray *dirList=[[NSMutableArray alloc]init];
NSString *fpath;
while (fpath=[myEnumerator nextObject])
{
[dirList addObject:fpath];
}
[dirList sortedArrayUsingSelector:@selector(localizedStandardCompare:)];
dirList には、「name_0012345.tif」のようなファイル名が含まれています。並べ替えにもかかわらず、名前で並べ替えられたファインダーで表示される順序で配列にファイルが含まれていません。