open_design file_name
Note: All previously open designs must be closed before opening a new design.
file_name
The complete .adb file path. If the complete path is not provided, then the directory is assumed to be the current working directory.
None
open_design {test.adb}
set designFile {d:/test/my_design.adb}
if { [catch { open_design $designFile }] {
Puts “Failed to open design”
# Handle Failure
} else {
puts “Design opened successfully”
# Proceed to further processing
}