** Function: viewFile ** Display file content **********************************************************************/
| 921 | ** Display file content |
| 922 | **********************************************************************/ |
| 923 | void viewFile(FS fs, String filepath) { |
| 924 | File file = fs.open(filepath, FILE_READ); |
| 925 | if (!file) return; |
| 926 | |
| 927 | ScrollableTextArea area = ScrollableTextArea("VIEW FILE"); |
| 928 | area.fromFile(file); |
| 929 | |
| 930 | file.close(); |
| 931 | |
| 932 | area.show(); |
| 933 | } |
| 934 | |
| 935 | /********************************************************************* |
| 936 | ** Function: checkLittleFsSize |
no test coverage detected