Evolution Hosting File FAQ
File FAQ Overview
This FAQ answers common questions related to working with files
in the Evolution Hosting J2EE hosting environment.Please feel free to contact support with any questions or suggestions.
File FAQ Contents
- File FAQ Overview
- File FAQ Contents
- How do I get to my directories in Evolution Hosting?
How do I get to my directories in Evolution Hosting?
Evolution Hosting sets the system properties app.html and app.data in every account.
To access this from your account, do:
//Get the html directory
File appHtml = new File(System.getProperty("app.html"));
//Get the data directory
File appData = new File(System.getProperty("app.data"));
|