![Teguar TP-RC55-08 Quick Installaion Manual Download Page 16](http://html1.mh-extra.com/html/teguar/tp-rc55-08/tp-rc55-08_quick-installaion-manual_1075462016.webp)
Installation Guide TP-RC55-08
www.teguar.com
Page 16
else
{ // turn off
// using Internal Storage
String FILENAME = "RedOff.txt";
String filewords = "RedOff";
FileOutputStream fos = openFileOutput(FILENAME, Context.MODE_PRIVATE);
fos.write(filewords.getBytes());
fos.close();
// to know the path of Internal storage
// for example:/data/data/com.example.hellojni/files
System.out.println("internal dir:" + getFilesDir());
// delete the file in internal storage
deleteFile("RedOn.txt");
}
}
}
catch (Exception e)
{
//exception handler
e.printStackTrace();
}
}