Hi, thank you for answering to my question. In my opinion, "internal memory" is Flash (Nand Flash, more often than Nor Flash, actually) and Ram. I know Android lies on a linux kernel, so (as any other linux system) can have a ramdisk. My question was intended to discover if there is any file.dir that points to a real ramdisk. The expected life of a flash memory isn't so high as you think. In practice, there are algorithms that, in the background, store data on the whole memory space, just to avoid to re-write the same cells, with the target of extending its life, but for proper nature, a Flash memory HAS a limited number of writes on same cell. The cell becames "old" and every write operation needs for additional time (erase / re-write) and when too old, the write fails. With the cited "data spreading" algorithm, the memory life is extended 'cause all the cells are used in a distributed mode. So, the larger free memory you have, the longer life can you expect. If you have low free memory, the algorithm can distribute the data only on such space, so it becames less efficient. In any case, if you have really quickly updating data, it's better to use the Ram, that is made just for this purpose. Anyway, I change my question in: "is there a file.dir that points to a ramdisk ?" Thanks.