I have a few data files like
AAA.plist
BBB.plist
CCC.plist
I would like to get the list of these plist file. If I know the file name in advance, I can get the file like this.
let path : String = Bundle.main.path(forResource: "AAA", ofType: "plist")!
var qplist = NSArray(contentsOfFile: path)
However I want to get the plist file list in case of not knowing the file name in advance.