delphi中用Tbatchmove 进行文件批处理时(mode is copy)目标文件不存在 desterminat 该怎么设?(100分)

  • 主题发起人 主题发起人 杨文
  • 开始时间 开始时间

杨文

Unregistered / Unconfirmed
GUEST, unregistred user!
delphi中用Tbatchmove 进行文件批处理时(mode is copy)目标文件不存在 desterminat 该怎么设?
如:
我要把c:/111.db 导到 a:/222.db?
 
好象自动创建文件
 
但是,destination 中路径该怎么设
 
我想路径是应该BDE别名中设置!!!
 

可以在Destination.tablename中设置全路径。(当然数据库得是PARADAX,FOXBASE等)
如:Destination.tablename:='a:/222.db';
 
table1:=Ttable.create(nil);
table1.TableName :='a:/222.db';
batchmove1.Destination:=table1;
batchmove1.Execute ;
 
多人接受答案了。
 
后退
顶部