android - Create Folder that can not accessible by any other application -


i want create 1 folder can not accessible other application.

is possible ? if yes give me solution how achieve functionality.

use internal storage so:

string filename = "hello_file"; string string = "hello world!";  fileoutputstream fos = openfileoutput(filename, context.mode_private); fos.write(string.getbytes()); fos.close(); 

Comments

Popular posts from this blog

php - What is the difference between $_SERVER['PATH_INFO'] and $_SERVER['ORIG_PATH_INFO']? -

fortran - Function return type mismatch -

queue - mq_receive: message too long -