IDA LISTFILES command

The IDA LISTFILES CLPPlus command lists the files of the specified project.

Invocation

You must run this command from the CLPPlus interface.

Authorization

None

Required connection

CLPPlus must be connected to the database.

Command syntax

IDA LISTFILES

Read syntax diagramSkip visual syntax diagramIDA LISTFILESPROJECTprojectFILES*FILESstringRECURSIVEYESRECURSIVENODIRECTORYONLYNODIRECTORYONLYYES

Parameters

PROJECT | PROJ
The name of the project for which a list of files is to be retrieved.
FILES
A file name or wildcard pattern that specifies which files are to be listed. For example:
*
All files.
*.so
All files that have the extension .so.
RECURSIVE | RECURSE
Whether to apply the action also to the subdirectories of the specified directory:
YES
Apply the action to subdirectories also. This is the default.
NO
Apply the action to only the specified directory. Ignore its subdirectories.
DIRECTORYONLY | DIRONLY
Whether to list only directories:
YES
List only the fully-qualified names of the directories that contain the files. Do not list the files.
NO
List the fully-qualified names of the files. This is the default

Examples

The following command lists all files from the release subdirectory of the project with the name proj3:
SQL> IDA LISTFILES PROJ proj3 FILES release/*.* RECURSIVE NO
The following command lists all .so files in the project with the name proj4 (and in any of its subdirectories):
SQL> IDA LISTFILES PROJ proj4 FILES *.so 
The following command lists all directories of the project with the name proj9:
SQL> IDA LISTFILES PROJ proj9 DIRONLY YES