Załóżmy, że w folderze „Zasoby” aplikacji na telefon iPhone mam folder o nazwie „Dokumenty”.
Czy istnieje sposób, w jaki mogę uzyskać tablicę lub jakąś listę wszystkich plików zawartych w tym folderze w czasie wykonywania?
Tak więc w kodzie wyglądałoby to tak:
NSMutableArray *myFiles = [...get a list of files in Resources/Documents...];
czy to możliwe?
Drag & Drop
utworzyć folder w projekcie, a zawartość zostanie skopiowana. Lub DodajCopy Files
fazę kompilacji i określ katalog do skopiowania.Create folder references for any added folders
opcję podczas kopiowania?Szybki
Zaktualizowano dla Swift 3
let docsPath = Bundle.main.resourcePath! + "/Resources" let fileManager = FileManager.default do { let docsArray = try fileManager.contentsOfDirectory(atPath: docsPath) } catch { print(error) }
Czytaj dalej:
źródło
Możesz również wypróbować ten kod:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentsDirectory = [paths objectAtIndex:0]; NSError * error; NSArray * directoryContents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:documentsDirectory error:&error]; NSLog(@"directoryContents ====== %@",directoryContents);
źródło
Wersja Swift:
if let files = try? FileManager.default.contentsOfDirectory(atPath: Bundle.main.bundlePath ){ for file in files { print(file) } }
źródło
Lista wszystkich plików w katalogu
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 }
Rekurencyjne wyliczanie plików w katalogu
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]; } }
Więcej informacji o NSFileManager znajdziesz tutaj
źródło
Swift 3 (i powracające adresy URL)
let url = Bundle.main.resourceURL! do { let urls = try FileManager.default.contentsOfDirectory(at: url, includingPropertiesForKeys:[], options: FileManager.DirectoryEnumerationOptions.skipsHiddenFiles) } catch { print(error) }
źródło
Swift 4:
Jeśli masz do czynienia z podkatalogami „Względem projektu” (niebieskie foldery), możesz napisać:
func getAllPListFrom(_ subdir:String)->[URL]? { guard let fURL = Bundle.main.urls(forResourcesWithExtension: "plist", subdirectory: subdir) else { return nil } return fURL }
Zastosowanie :
if let myURLs = getAllPListFrom("myPrivateFolder/Lists") { // your code.. }
źródło