boxlang-file-handling

Installation
SKILL.md

BoxLang File Handling

Overview

BoxLang provides comprehensive file-system operations for reading, writing, and managing files and directories. Supports text, binary, and streaming access with configurable encoding.

Reading Files

// Read entire file as string
var content = fileRead( "/path/to/file.txt" )

// Read with explicit encoding
var content = fileRead( "/path/to/file.txt", "UTF-8" )
Installs
29
First Seen
Apr 15, 2026
boxlang-file-handling — ortus-boxlang/skills