Loading multiple JSON files from my local directory into Tabulator table

I am trying to load multiple JSON files from my local directory into Tabulator 6.2 table. I verified JSON files are correctly formatted. And that my Tabulator table fields match JSON file fields and my Tabulator table will load successful a single JSON file. I need to get multiple JSON files from my local SaDirectory to load into my table.

My SaDirectory contains these JSON formatted files:
123.JSON
124.JSON
125.JSON

I tried to load with this ajax code:

var table = new Tabulator("#example-table", {
ajaxURL:"C:UsersDesktopSaDirectory" });
});

Also tried this Tabulator import code:
table.import(“json”, “.json”)

I can load one JSON file, but cannot get tabulator to load all JSON files from
SaDirectory.
Please help. Thanks.