Gli ultimi tutorial di sviluppo web
 

ASP Metodo OpenTextFile


<Complete FileSystemObject Object Reference

Il metodo OpenTextFile apre un file specificato e restituisce un oggetto TextStream che può essere utilizzato per accedere al file.

Sintassi

FileSystemObject.OpenTextFile(fname,mode,create,format)

Parametro Descrizione
fname Necessario. Il nome del file da aprire
mode Opzionale. Come aprire il file
1 = ForReading - Aprire un file per la lettura. Non è possibile scrivere a questo file.
2 = ForWriting - Aprire un file per la scrittura.
8 = ForAppending - Aprire un file e scrivere fino alla fine del file.
create Opzionale. Imposta se un nuovo file può essere creato se il nome del file non esiste. True indica che un nuovo file può essere creato, e False indica che non verrà creato un nuovo file. False è di default
format Opzionale. Il formato del file
0 = TristateFalse - Aprire il file in formato ASCII. Questa è l'impostazione predefinita.
-1 = TristateTrue - Aprire il file come Unicode.
-2 = TristateUseDefault - Aprire il file utilizzando il default del sistema.

Esempio

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.OpenTextFile(Server.MapPath("testread.txt"),8,true)
f.WriteLine("This text will be added to the end of file")
f.Close
set f=Nothing
set fs=Nothing
%>

<Complete FileSystemObject Object Reference