51Testing软件测试论坛
标题:
QTP中,判断 excel文件是否存在,不存在,新建一个。能实现吗?怎么实现?
[打印本页]
作者:
angel
时间:
2005-7-21 14:53
标题:
QTP中,判断 excel文件是否存在,不存在,新建一个。能实现吗?怎么实现?
QTP中,判断 excel文件是否存在,不存在,新建一个。能实现吗?怎么实现?
请各位大侠帮忙,谢谢。
作者:
lovetest6
时间:
2005-7-22 09:23
好像贴过了吧?看来整理论坛是当务之急 啊。呵呵。更多的例子,请参考QTP plus的帮助文件。
dim oFSO
' creating the file system object
set oFSO = CreateObject ("Scripting.FileSystemObject")
'Option Explicit
' *********************************************************************************************
' Create a new txt file
' Parameters:
' FilePath - location of the file and its name
' *********************************************************************************************
Function CreateFile (FilePath)
' varibale that will hold the new file object
dim NewFile
' create the new text ile
set NewFile = oFSO.CreateTextFile(FilePath, True)
set CreateFile = NewFile
End Function
' *********************************************************************************************
' Check if a specific file exist
' Parameters:
' FilePath - location of the file and its name
' *********************************************************************************************
Function CheckFileExists (FilePath)
' check if file exist
CheckFileExists = oFSO.FileExists(FilePath)
End Function
复制代码
[
Last edited by lovetest6 on 2005-7-22 at 09:25
]
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2