forked from darktable-org/lua-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
check_if_file_exists
deekayhd edited this page Mar 29, 2026
·
1 revision
check_if_file_exists
check if a file or path exist
local df = require "lib/dtutils.file"
local result = df.check_if_file_exists(filepath)filepath - string - a file or path to check
check_if_file_exists checks to see if a file or path exists.
result - boolean - true if the file or path exists, false if it doesn't.