mini_arcade_core.runtime.file.file_adapter ========================================== .. py:module:: mini_arcade_core.runtime.file.file_adapter .. autoapi-nested-parse:: Module providing runtime adapters for window and scene management. Classes ------- .. autoapisummary:: mini_arcade_core.runtime.file.file_adapter.LocalFilesAdapter Module Contents --------------- .. py:class:: LocalFilesAdapter Bases: :py:obj:`mini_arcade_core.runtime.file.file_port.FilePort` Adapter for local file operations. .. py:method:: write_text(path: str, text: str) Write text to a file. :param path: Path to the file. :type path: str :param text: Text to write. :type text: str .. py:method:: write_bytes(path: str, data: bytes) Write bytes to a file. :param path: Path to the file. :type path: str :param data: Data to write. :type data: bytes