problem in finding list of files in directory
I want to retrieve list of all file in a specific folder that included oracle form and menu and report and some txt file... Do you have any idea how I can retrieve these data in ORACLE form, and insert them into my data block, automatically? I use oracle form 6.0. I did something along these lines: Create an Oracle directory for the directory you want to list: create or replace directory YOURDIR as '\path\to\your\directory'; Build a temporary table: create global temporary table DIR_LIST ( FILENAME VARCHAR2(255), ) on commit preserve rows; grant select, insert, update, delete on DIR_LIST to