Let\'s say I have a folder in my \"Resources\" folder of my iPhone application called \"Documents\".
Is there a way that I can get an array or some type of list of a
Swift version:
if let files = try? FileManager.default.contentsOfDirectory(atPath: Bundle.main.bundlePath ){ for file in files { print(file) } }