get_partition_file_list (::quartus::incremental_compilation)

The following table displays information for the get_partition_file_list Tcl command:

Tcl Package and Version

Belongs to ::quartus::incremental_compilation 1.1

Syntax get_partition_file_list [-h | -help] [-long_help] [-exclude_compiled_partitions] [-exclude_db_and_rr_files] [-use_placeholders]
Arguments -h | -help Short help
  -long_help Long help with examples and possible return values
-exclude_compiled_partitions Option to exclude compiled_partitions folder from the filelist
-exclude_db_and_rr_files Option to exclude .db_info, rapid recompile state files, and .mif files
-use_placeholders Option to generate filelist using a placeholder
Description
Returns the list of files that represent the incremental compilation
database for the active revision.
Example Usage
package require ::quartus::incremental_compilation

set filelist [get_partition_file_list]
foreach f $filelist {
	puts $f
}
Return Value Code Name Code String Return
  TCL_OK 0 INFO: Operation successful
  TCL_ERROR 1 ERROR: Can't find active revision. Make sure there is an open, active revision name. Use the -revision option of project_open, project_new, or use set_current_revision.
  TCL_ERROR 1 ERROR: No project is currently open. Open an existing project or create a new project.