IDA DOWNLOADFILES command
The IDA DOWNLOADFILES CLPPlus command downloads files that are needed by a project.
Invocation
You must run this command from the CLPPlus interface.
Authorization
None
Required connection
CLPPlus must be connected to the database.
Command syntax
Parameters
- PROJECT | PROJ
- The name of the project whose files are to be downloaded.
- FILES
- A string containing a file name or wildcard pattern that specifies
which files are to be downloaded. 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. The subdirectory structure is preserved on the target system. This is the default.
- NO
- Apply the action to only the specified directory. Ignore its subdirectories.
- TARGETDIRECTORY | TARGETDIR
- The directory on the local client to which the files are to be downloaded. The default is the current working directory.
Examples
The following command downloads
all files from the release subdirectory of the project with the name
proj3 to
the current directory:SQL> IDA DOWNLOADFILES PROJ proj3 FILES release/*.* RECURSIVE NOThe
following command downloads all .so files from the project with the
name
proj4 (and from any of its subdirectories) to
the /home/user1 directory:SQL> IDA DOWNLOADFILES PROJ proj4 FILES *.so TARGETDIR /home/user1