By 10 Settembre 2014

VbScript – Aprire-Leggere un file con VbScript

Il seguente “spezzone” di codice in linguaggio in VbScript ( Windows Script Host ) si utilizza per l’apertura di un file di testo.

On Error Resume Next
'open the file system object

Set oFSO = CreateObject("Scripting.FileSystemObject")
set WSHShell = wscript.createObject("wscript.shell")

'open the data file
Set oTextStream = oFSO.OpenTextFile("wslist.txt")

'make an array from the data file
Wscript.Echo oTextStream.ReadAll

'close the data file
oTextStream.Close

Altri script in VbScript che potrebbero interessarti :

Aprire un file con VbScript, Leggere un file con VbScript, VbScript aprire file di testo, Open file con VbScript

Posted in: Vbscript

About the Author:

shared on wplocker.com