TSC AUTO ID Technology Co., Ltd. 129 Copyright 2013 All Rights Reserved.
COPY
Description
Copy the existed file from CARD to FLASH.
Syntax
COPY [memory ID of source,]"filename of source",[memory ID of new file,]"new filename"
The file in CARD which you want to copy to on board FLASH.
The new filename you want to use in the on board FLASH.
Note: This command has been supported since V6.78 EZ and later firmware.
Example
See Also
DOWNLOAD, EOP, OPEN, FREAD$(), EOF, LOF(), SEEK, CLOSE
Sample Code
DOWNLOAD "DATA_D.DAT",105,We stand behind our products with one of the most comprehensive support
programs in the Auto-ID industry.
DOWNLOAD "TEST.BAS"
KILL F,"*"
COPY "DATA_D.DAT",F,"DATA_F.DAT"
OPEN "DATA_F.DAT",0
SEEK 0,0
data$=FREAD$(0,LOF("DATA_F.DAT"))
CLOSE 0
SIZE 4,0.5
GAP 0,0
CLS
BOX 10,10,800,100,2
BLOCK 15,15,790,90,"0",0,8,8,20,2,data$
PRINT 1
EOP
TEST