51Testing软件测试论坛

标题: 怎么用robot把文件拷贝到指定目录? [打印本页]

作者: crimson    时间: 2005-8-12 11:06
标题: 怎么用robot把文件拷贝到指定目录?
robot中有没有这样的语句,可以把指定目录下某个文件,考到另一个文件夹下?目前用录制的方法,移植性太差,环境稍有变化就认不出来了。
作者: luming    时间: 2005-8-12 11:09
FileCopy
作者: ilovejolly    时间: 2005-8-12 11:11
对文件操作的几个函数论坛上有的,可以搜一下
作者: crimson    时间: 2005-8-12 11:20
FileCopy Example       
This example copies one file to another. Both filenames are specified by the user.
Sub main
   Dim oldfile, newfile
   Dim msgtext as String
   On Error Resume Next
   oldfile= InputBox("Copy which file?")
   newfile= InputBox("Copy to?")
   FileCopy oldfile,newfile
   If Err<>0 then
      msgtext="Error during copy. Rerun program."
   Else
      msgtext="Copy successful."
   End If
   MsgBox msgtext
End Sub



嗯,谢谢
作者: ilovejolly    时间: 2005-8-12 11:24
不错,希望大家象crimson一样,问题解决了要把怎么解决的说出来。这样大家都可以学习
作者: 司空公子    时间: 2005-8-12 17:26
学习robot,建议大家找本VB的基本语法书,或者到网上找相应的资料
这里提供一个VBScript的函数查询的网站
http://www.zjol.com.cn/vbbible/s ... /VBSdocs/vbstoc.htm
作者: DontTest    时间: 2005-8-17 16:46
司空公子 is right.  What you can do in VB , you can do the same thing in SQABasic in general.




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2