| Action | Description |
|---|---|
| File.copy | Copies one or more files. |
| File.readBytes | Reads a file as binary, returning the entire file's content as bytes. |
| File.readLines | Reads a file as text, returning the entire file's content as an array of strings. |
| File.readText | Reads a file as text, returning the entire file's content as a string. |
| File.writeBytes | Writes bytes as a binary file. |
| File.writeLines | Writes an array of strings as lines to a text file. |
| File.writeText | Writes a string as a text file. |