我想使用OTA / Vbscript将一个测试从一个文件夹复制到Quality Center的另一个文件夹。对此非常感谢的任何帮助
答案 0 :(得分:0)
您只是使用QC还是使用QTP?如果你使用QTP并且需要将测试从一个文件夹移动到另一个文件夹,那么最简单的方法就是编写VBscript来实现这一点。
dim sourceFolder
set sourceFolder=CreateObject("Scripting.FileSystemObject")
If sourceFolder.FileExists([path to your file(s)]) Then
sourceFolder.MoveFile "[file]", "[destination]"
End If