In progress
const publicFiles = await storage.files('public')
const publicFilesDeep = await storage.files('public', true)
const content = await storage.read('public/index.html')
const fileExists = await storage.exists('index.ts')
const file = await storage.read('index.html')
await storage.save(file, 'public/html')
await storage.save(file, 'public/html' , 'main.html')
await storage.makeDirectory('public/images')
await storage.makeDirectory('public/videos')
await storage.delete('public/index.html')