51Testing软件测试论坛

标题: QTP中,判断 excel文件是否存在,不存在,新建一个。能实现吗?怎么实现? [打印本页]

作者: angel    时间: 2005-7-21 14:53
标题: QTP中,判断 excel文件是否存在,不存在,新建一个。能实现吗?怎么实现?
QTP中,判断 excel文件是否存在,不存在,新建一个。能实现吗?怎么实现?

请各位大侠帮忙,谢谢。
作者: lovetest6    时间: 2005-7-22 09:23
好像贴过了吧?看来整理论坛是当务之急 啊。呵呵。更多的例子,请参考QTP plus的帮助文件。

  1. dim oFSO

  2. ' creating the file system object

  3. set oFSO = CreateObject ("Scripting.FileSystemObject")



  4. 'Option Explicit

  5. ' *********************************************************************************************

  6. ' Create a new txt file



  7. ' Parameters:

  8. ' FilePath - location of the file and its name

  9. ' *********************************************************************************************

  10. Function CreateFile (FilePath)

  11.     ' varibale that will hold the new file object

  12.     dim NewFile

  13.     ' create the new text ile

  14.     set NewFile = oFSO.CreateTextFile(FilePath, True)

  15.     set CreateFile = NewFile

  16. End Function



  17. ' *********************************************************************************************

  18. ' Check if a specific file exist



  19. ' Parameters:

  20. ' FilePath - location of the file and its name

  21. ' *********************************************************************************************

  22. Function CheckFileExists (FilePath)

  23.     ' check if file exist

  24.     CheckFileExists = oFSO.FileExists(FilePath)

  25. End Function
复制代码

[ Last edited by lovetest6 on 2005-7-22 at 09:25 ]




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