SELECT * FROM DBA_DIRECTORIES; --gives all list of directory in database.
select * from DBMS_CLOUD.LIST_FILES('tmp'); --gives detail about files in tmp directory. 

Can we find out directory name, path and other details related to files in oracle?
If yes, what is the query for that?

1

There are 1 best solutions below

0
On

I could be wrong, but most probably you are looking for this SQL:

SELECT * FROM DBA_DATA_FILES;

Please see this post for more details: How to find the default location in which Oracle DBF files are created?