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];
注:ソースフォルダーをバンドルに追加するときは、[コピー時に追加されたフォルダーのフォルダー参照を作成する]オプションを選択してください。
Drag & Drop
プロジェクトへのフォルダと内容がコピーされます。またはCopy Files
ビルドフェーズを追加し、コピーするディレクトリを指定します。
Create folder references for any added folders
コピー時にオプションを選択しましたか?
Swift3用に更新
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);
ディレクトリ内のすべてのファイルの一覧表示
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の詳細については、こちらをご覧ください
「プロジェクトに関連する」サブディレクトリ(青いフォルダ)を使用する必要がある場合は、次のように記述できます。
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..
}