* Create a file on the disk. * * @param filename The filename to create. */
| 863 | * @param filename The filename to create. |
| 864 | */ |
| 865 | void File_Create_Personal(const char *filename) |
| 866 | { |
| 867 | uint8 index; |
| 868 | |
| 869 | index = _File_Open(SEARCHDIR_PERSONAL_DATA_DIR, filename, FILE_MODE_WRITE); |
| 870 | if (index != FILE_INVALID) File_Close(index); |
| 871 | } |
| 872 | |
| 873 | /** |
| 874 | * Reads length bytes from filename into buffer. |
no test coverage detected