access Alfresco file directory?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-11-2010 06:33 AM
with Java, from within Alfresco, what is the correct syntax, what classes do I call, to access the Alfresco file directory? For example if I want to access with Java the templates located under …\WEB-INF\classes\alfresco\templates\ how can I do this?
Labels:
- Labels:
-
Archive
10 REPLIES 10
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2010 03:51 AM
SInce you may assume that both tomcat/shared/classes and alfresco/WEB-INF/classes are in the classpath, you can access them as resource.
Something like that (untested):HTHClassLoader cl = Thread.currentThread().getContextClassLoader();InputStream is = cl.getResourceAsStream("/alfresco/templates/foobar.ftl")
Gyro
it found a resource I placed under alfresco/WEB-INF/classes but not under tomcat/shared/classes. would you know how I can locate resources placed under tomcat/shared/classes?
