# WORKSPACE_IMAGES # returns a string of type
wwv_flow_file_mgr.get_file?p_security_group_id=123456789&p_fname=
and therefore applies only to files stored in the Apex WWV_FLOW_FILES file table.
# IMAGE_PREFIX # returns a string of type /i/ , and it can be used in links to download files stored in Apex image folders. For example, I can create a link like this:
<a href="#IMAGE_PREFIX#"javascript/apex_4_0.js">Download some JS</a>
and when I launch the page and click on it, I can open or download this file.
It is not recommended that you store your own files in the Apex image folder, because they may be overwritten during Apex updates. Instead, you can define your own logical directory, for example. /myfiles/ on the application server, pointing to another place, and then refers to it as follows:
<a href="/myfiles/picture1.jpg">Download picture 1</a>
source share