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
복사 할 때 옵션 을 선택하셨습니까 ?
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에 대한 자세한 내용은 여기
"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..
}