class Terminalwire::Server::Resource::File
def append(path, content)
def append(path, content) command("append", path: path.to_s, content:) end
def change_mode(path, mode)
def change_mode(path, mode) command("change_mode", path: path.to_s, mode:) end
def delete(path)
def delete(path) command("delete", path: path.to_s) end
def exist?(path)
def exist?(path) command("exist", path: path.to_s) end
def read(path)
def read(path) command("read", path: path.to_s) end
def write(path, content)
def write(path, content) command("write", path: path.to_s, content:) end