File.Create do Invalid Opcode when file extension size is larger than 3
The last command makes the kernel crash
Interesting
Ah I see Cosmos's FAT32 impl doesnt support LFS (Long Filename Support)
@valentinbreiz
It used to work before
Ah weird then
in the meantime maybe try using "cfg" instead of "conf"
^
Works for me using VFS on VMWare... tested on both my OS and Aura 🤔
That's because cosmos does filenames weirdly... your filename is only 8 characters long (the period doesn't count) so basically cosmos stores it as this
| Filename | Extension |
|---|---|
| file.conf |
but if you try settings.conf
| Filename | Extension |
|---|---|
| settings | .conf |
the extension is more than 3 characters long and overflows
Usually in FAT you would do this
| Filename | Extension |
|---|---|
| file | txt |
As you can see it's separated
That's because cosmos does filenames weirdly
its the FAT driver not cosmos VFS