While exploring ways to develop QField extensions, I noticed there are no direct functions exposed to QML for reading and writing file content. This makes certain common operations difficult to implement, such as: Reading file content to send via POST requests to APIs Storing local data when offline Implementing custom file-based caching mechanisms Processing local files directly in QML extensions I've looked through the codebase, particularly FileUtils, PlatformUtilities, and QFieldCloudConnection, but couldn't find any functions that directly expose file content reading/writing to QML. Proposed Solution Add three utility functions to FileUtils that would allow QML extensions to read, write, and get information about file content: https://gist.github.com/t-book/83488fcf3ff8a97d5cba70846d36e799 The getFileInfo function is useful as it provides a comprehensive way to get file metadata along with content in a single call, saving multiple file accesses when both content and metadata are needed. Additionally test cases to ensure the functions work correctly could be added: https://gist.github.com/t-book/5b7fdad8198c182c95a8e054b4e58a9b If I've missed existing implementations, I apologize and would appreciate being pointed to them. Further I've prepared these functions based on studying the codebase, but since I've had issues with my local build environment, they remain untested in a running QField instance - I would appreciate any feedback if there are better approaches within the QField architecture. Would a PR adding these utility functions be welcome? I believe they would significantly enhance the capabilities of QField extensions without adding much complexity to the codebase.