Flipper/Applications/Custom (UL, RM)/Unleashed/Scripts/js_examples/path.js

9 lines
262 B
JavaScript
Raw Normal View History

2024-08-07 03:09:52 +00:00
let storage = require("storage");
print("script has __dirpath of" + __dirpath);
print("script has __filepath of" + __filepath);
if (storage.exists(__dirpath + "/math.js")) {
print("math.js exist here.");
} else {
print("math.js does not exist here.");
}