0
Is it possible to open txt files in c++ on android?
Title. I tried various ways to work with text documents on my android device, but nothing seems to be working.
2 Answers
0
You want to edit C++ files in a TXT-Editor?
Android's Developers have purposely disabled editing of files except .txt's: as it would be used to 'hack' the OS.
Buuuut... you can use an Archiver tool to change the file extension.
*.txt --> *.cpp
0
That's not it. I want to open them using std::ifstream command, is there any way to do that?