web-dev-qa-db-ja.com

Resourcesフォルダー内のファイルのリストを取得する-iOS

IPhoneアプリケーションの「リソース」フォルダーに「ドキュメント」というフォルダーがあるとしましょう。

実行時にそのフォルダーに含まれるすべてのファイルの配列または何らかのタイプのリストを取得する方法はありますか?

したがって、コードでは、次のようになります。

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

これは可能ですか?

83
CodeGuy

このようにResourcesディレクトリへのパスを取得できます。

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

次に、Documentsをパスに追加し、

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

その後、NSFileManagerのAPIをリストするディレクトリのいずれかを使用できます。

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

:ソースフォルダーをバンドルに追加する場合は、[コピー時に追加されたフォルダーのフォルダー参照を作成する]オプションを選択してください。

134

Swift

Swift 3に更新

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

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

さらに読む:

26
Suragch

このコードを試すこともできます:

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

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

Swiftバージョン:

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

ディレクトリ内のすべてのファイルのリスト

     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の詳細については、 here

6
iGo

Swift(およびURLを返す)

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

スウィフト4:

サブディレクトリ"プロジェクトとの相対関係"(青いフォルダ)を処理する必要がある場合は、次のように記述できます。

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..
}
2