FileIO.writeFile

Write a file to the filesystem.

interface FileIO
void
writeFile
(
string filename
,
const(ubyte)[] content
)

Parameters

filename string

Path of the file in the filesystem.

content const(ubyte)[]

Content of the file.

Throws

Any Exception if the file couldn't be written.

Meta