|
发表于 2022-10-29 14:51:30
|
显示全部楼层
本帖最后由 gaoche 于 2022-10-29 14:57 编辑
在后处理 打开PUI文件,在“程序结束“末尾加一个定制命令,定制命令内容:global mom_parent_group_name ptp_file_name output_extn
MOM_close_output_file $ptp_file_name
#关闭后处理输出的文件
if {[file exists $mom_parent_group_name${output_extn}]} {
MOM_remove_file $mom_parent_group_name${output_extn}
}
#检查当前分组命令的文件是否存在(再次后处理时)
#如果存在,删除它
file rename $ptp_file_name $mom_parent_group_name${output_extn}
#从命令输出的NC文件为选中分组名的NC文件
set ifile [open $mom_parent_group_name${output_extn} r]
set buf ""
while { [gets $ifile buf] > 0 } {
MOM_output_to_listing_device $buf
}
close $ifile
|
|