获取Swift中子目录中资源的所有URL

时间:2018-04-24 14:44:26

标签: ios swift xcode nsfilemanager subdirectory

我正在尝试为iOS应用中的子目录中的所有资源创建一个URL数组。我似乎无法找到正确的路径,我希望能够检索URL,即使我不知道名称(即我不想将文件名硬编码到代码中)。

下面是层次结构的屏幕截图,我试图获取'测试'中的所有文件。夹: enter image description here

非常感谢任何帮助,我试图使用文件管理器和捆绑主路径,但到目前为止没有任何乐趣。

这是我目前唯一的代码:

let fileManager = FileManager.default
let path = Bundle.main.urls(forResourcesWithExtension: "pdf", subdirectory: "Files/test")

print(path)

我也试过这段代码,但这打印了所有资源,我似乎无法指定一个子目录:

let fm = FileManager.default
let path = Bundle.main.resourcePath!

do {
    let items = try fm.contentsOfDirectory(atPath: path)

    for item in items {
        print("Found \(item)")
    }
} catch {
    // failed to read directory – bad permissions, perhaps?
}

根据@vadian的回答,文件夹已从虚拟组更改为真实文件夹。使用以下代码,我能够获得资源列表:

let fileManager = FileManager.default
    let path = Bundle.main.resourcePath

    let enumerator:FileManager.DirectoryEnumerator = fileManager.enumerator(atPath: "\(path!)/Files/test")!
    while let element = enumerator.nextObject() as? String {
        if element.hasSuffix("pdf") || element.hasSuffix("jpg") { // checks the extension
            print(element)
        }
    }

2 个答案:

答案 0 :(得分:9)

请考虑黄色文件夹enter image description here是虚拟,而不是真实文件夹(尽管Xcode会在项目目录中创建真实文件夹)。在构建应用程序时,黄色文件夹中的所有文件都会移动到捆绑包中的Resources目录中。

捆绑包中的真实文件夹是项目导航器中的enter image description here

答案 1 :(得分:1)

您可以按照以下步骤进行操作:

  1. 在项目文件夹中创建一个扩展名为 .bundle 的新文件夹(例如: Images.bundle )。
  2. 将资源文件复制到该新文件夹中。
  3. 将新文件夹拖放到在Xcode中打开的项目中。
  4. 使用以下代码段检索URL:

    let urls = Bundle.main.urls(forResourcesWithExtension: nil, subdirectory: "Images.bundle")
    

您还可以在此处观看指南视频:https://youtu.be/SpMaZp0ReEo