Hello there, i am using this simple code to delete objects from a table after certain amount of time,
I am wondering how to access files api because objects were deleted but images assosiated with those objects are still there
/*
let month = Date.now() - 30 * 24 * 60 * 60 * 1000
return Backendless.Data.of('NameOfTable').bulkDelete(`created <= ${ month }`) // delete obsolete
.catch(function(error) {
console.log('Server reported an error ' + error)
})
*/
I tried to replace “NameOfTable” with “NameOfFolder” but its not working