Check for invalid/deleted files

A file is deleted in the file manager. Some data is still referencing the file. How can I check if the file exists in Bubble with the reference?

It is pretty easy with traditional programming.
var myLog = new File("/data/logs/today.log");
if(myLog.exists()){}

This topic was automatically closed after 70 days. New replies are no longer allowed.