[iphone] Resources 폴더에있는 파일 목록 가져 오기-iOS

iPhone 응용 프로그램의 “Resources”폴더에 “Documents”라는 폴더가 있다고 가정 해 보겠습니다.

런타임에 해당 폴더에 포함 된 모든 파일의 배열 또는 일부 유형의 목록을 가져올 수있는 방법이 있습니까?

따라서 코드에서는 다음과 같습니다.

NSMutableArray *myFiles = [...get a list of files in Resources/Documents...];

이것이 가능한가?



답변

다음 Resources과 같이 디렉토리 경로를 얻을 수 있습니다 .

NSString * resourcePath = [[NSBundle mainBundle] resourcePath];

그런 다음 Documents경로에를 추가하고

NSString * documentsPath = [resourcePath stringByAppendingPathComponent:@"Documents"];

그런 다음의 디렉토리 목록 API를 사용할 수 있습니다 NSFileManager.

NSError * error;
NSArray * directoryContents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:documentsPath error:&error];

참고 : 번들에 소스 폴더를 추가 할 때 “복사 할 때 추가 된 폴더에 대한 폴더 참조 생성 옵션”을 선택해야합니다.


답변

빠른

Swift 3 업데이트

let docsPath = Bundle.main.resourcePath! + "/Resources"
let fileManager = FileManager.default

do {
    let docsArray = try fileManager.contentsOfDirectory(atPath: docsPath)
} catch {
    print(error)
}

추가 읽기 :


답변

이 코드를 시도해 볼 수도 있습니다.

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSError * error;
NSArray * directoryContents =  [[NSFileManager defaultManager]
                      contentsOfDirectoryAtPath:documentsDirectory error:&error];

NSLog(@"directoryContents ====== %@",directoryContents);


답변

Swift 버전 :

    if let files = try? FileManager.default.contentsOfDirectory(atPath: Bundle.main.bundlePath ){
        for file in files {
            print(file)
        }
    }


답변

디렉토리의 모든 파일 나열

     NSFileManager *fileManager = [NSFileManager defaultManager];
     NSURL *bundleURL = [[NSBundle mainBundle] bundleURL];
     NSArray *contents = [fileManager contentsOfDirectoryAtURL:bundleURL
                           includingPropertiesForKeys:@[]
                                              options:NSDirectoryEnumerationSkipsHiddenFiles
                                                error:nil];

     NSPredicate *predicate = [NSPredicate predicateWithFormat:@"pathExtension ENDSWITH '.png'"];
     for (NSString *path in [contents filteredArrayUsingPredicate:predicate]) {
        // Enumerate each .png file in directory
     }

디렉터리의 파일을 재귀 적으로 열거

      NSFileManager *fileManager = [NSFileManager defaultManager];
      NSURL *bundleURL = [[NSBundle mainBundle] bundleURL];
      NSDirectoryEnumerator *enumerator = [fileManager enumeratorAtURL:bundleURL
                                   includingPropertiesForKeys:@[NSURLNameKey, NSURLIsDirectoryKey]
                                                     options:NSDirectoryEnumerationSkipsHiddenFiles
                                                errorHandler:^BOOL(NSURL *url, NSError *error)
      {
         NSLog(@"[Error] %@ (%@)", error, url);
      }];

      NSMutableArray *mutableFileURLs = [NSMutableArray array];
      for (NSURL *fileURL in enumerator) {
      NSString *filename;
      [fileURL getResourceValue:&filename forKey:NSURLNameKey error:nil];

      NSNumber *isDirectory;
      [fileURL getResourceValue:&isDirectory forKey:NSURLIsDirectoryKey error:nil];

       // Skip directories with '_' prefix, for example
      if ([filename hasPrefix:@"_"] && [isDirectory boolValue]) {
         [enumerator skipDescendants];
         continue;
       }

      if (![isDirectory boolValue]) {
          [mutableFileURLs addObject:fileURL];
       }
     }

NSFileManager에 대한 자세한 내용은 여기


답변

Swift 3 (및 반환 URL)

let url = Bundle.main.resourceURL!
    do {
        let urls = try FileManager.default.contentsOfDirectory(at: url, includingPropertiesForKeys:[], options: FileManager.DirectoryEnumerationOptions.skipsHiddenFiles)
    } catch {
        print(error)
    }


답변

스위프트 4 :

“Relative to project” (파란색 폴더) 하위 디렉토리와 관련하여 다음과 같이 작성할 수 있습니다.

func getAllPListFrom(_ subdir:String)->[URL]? {
    guard let fURL = Bundle.main.urls(forResourcesWithExtension: "plist", subdirectory: subdir) else { return nil }
    return fURL
}

사용법 :

if let myURLs = getAllPListFrom("myPrivateFolder/Lists") {
   // your code..
}