Issue
I'm working on eclipse plugin. I would like to make by it virtual folder or whole virtual workspace in Eclipse without having it written in File system. (Ergo every read and write, which would Eclipse try to do with files in folder or workspace, would be processed only in memory of plugin.)
But I can't find any suitable method, how to do it. Thanks for help.
Solution
If you mean IFolder
you can't. The standard Eclipse workspace code does not support in-memory folders or files.
Answered By - greg-449
Answer Checked By - Mildred Charles (JavaFixing Admin)