如何修改Swift4中的fileManagerurl指向另一个目录

How to modify the fileManager url in Swift 4 to point to another directory

我有一个正在 Xcode 9.2 和 Swift 4 中开发的应用程序,它创建一个文件并将其放置在用户 iOS 上文档文件夹的导出文件夹中设备。我目前使用的代码在用户 iOS 设备的文档文件夹中查找文件。

let csvdocumentsPath = fileManager.urls(for: .documentDirectory, in: .userDomainMask).first

我想更改代码以指向用户设备上 Documents 文件夹的 Exports 子文件夹,以便它可以找到该文件。

我搜索了 Apple 文档、Internet 和 Stack Overflow,但没有找到任何可以用来进行更改的内容。我对此很陌生,如果您有任何建议或建议,我将不胜感激。

我发现我需要通过添加导出文件夹来附加路径,如下所示:

let csvPath = csvdocumentsPath?.appendingPathComponent("Exports").appendingPathComponent(fileName3)