Table of Contents

Import

import files from "/libs/wpower/files.js";

Read File

// A dialog will popup
var [Handle,Content] = await files.read_file();

Write File

// No dialog, or only permission notification
await files.write_file(Handle,Text);

Write New File

// With dialog
await files.write_new_file(Text);