当前位置:主页 > 脚本语言 > VBS >

用vbs实现读取文本文件的方法

时间:2020-12-01 12:57:41 | 栏目:VBS | 点击:

vbs读取文件方法Function readfile(readfilepath)
'On Error Resume Next
    Set fs = CreateObject("Scripting.FileSystemObject")
    Set file = fs.OpenTextFile(readfilepath, 1, false)
    readfile=file.readall
    file.close
    set fs=nothing
end Function

您可能感兴趣的文章:

相关文章