怎么用robot把文件拷贝到指定目录?
robot中有没有这样的语句,可以把指定目录下某个文件,考到另一个文件夹下?目前用录制的方法,移植性太差,环境稍有变化就认不出来了。 FileCopy 对文件操作的几个函数论坛上有的,可以搜一下 FileCopy ExampleThis 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
嗯,谢谢 不错,希望大家象crimson一样,问题解决了要把怎么解决的说出来。这样大家都可以学习 学习robot,建议大家找本VB的基本语法书,或者到网上找相应的资料
这里提供一个VBScript的函数查询的网站
http://www.zjol.com.cn/vbbible/software/program/VBSdocs/vbstoc.htm 司空公子 is right.What you can do in VB , you can do the same thing in SQABasic in general.
页:
[1]