You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the file is open, MicroBitFileSystem complains because it can't open the file. If the file is closed then MicroBitFile::remove faults the fileHandle. This would work:
int MicroBitFile::remove()
{
if ( fileHandle >= 0)
close();
The text was updated successfully, but these errors were encountered:
martinwork
added a commit
to martinwork/microbit-dal
that referenced
this issue
Mar 15, 2019
If the file is open, MicroBitFileSystem complains because it can't open the file. If the file is closed then MicroBitFile::remove faults the fileHandle. This would work:
int MicroBitFile::remove()
{
if ( fileHandle >= 0)
close();
The text was updated successfully, but these errors were encountered: