f/getOutputFiles

Get paths of created files. Returns empty array on Node.js.

Returns:
Type:
Promise.<Array.<TypeDefs.FileInfo>>

"Promise" returns path and size of created files.

Example
const files = await Gdal.getOutputFiles();
files.forEach((fileInfo) => {
  console.log(`file path: ${fileInfo.path}, file size: ${fileInfo.size}`);
});