mirror of
https://github.com/UberGuidoZ/Flipper.git
synced 2024-12-23 23:10:16 +00:00
9 lines
262 B
JavaScript
9 lines
262 B
JavaScript
|
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.");
|
||
|
}
|