23.2 GET_WORKSPACE _FILES Function
This function exports the given workspace's static files.
Syntax
FUNCTION GET_WORKSPACE_FILES (
    p_workspace_id     IN NUMBER,
    p_with_date        IN BOOLEAN  DEFAULT FALSE )
    RETURN apex_t_export_files;Parameters
Table 23-2 GET_WORKSPACE_FILES Function Parameters
| Parameters | Description | 
|---|---|
| 
 | The workspace ID. | 
| 
 | If  | 
RETURNS
A table of apex_t_export_file. The result is a single file, splitting into multiple files will be implemented in a future release.
                  
Example
Export the workspace files of the workspace with id 12345678.
declare
    l_file apex_t_export_files;
begin
    l_file := apex_export.get_workspace_files(p_workspace_id => 12345678);
end;Parent topic: APEX_EXPORT