El método ASP ReadAll se utiliza para leer todo el contenido del archivo de texto. Es un método predefinido del objeto TextStream que devuelve una string de resultado.
Nota: este método no es adecuado para archivos grandes porque desperdicia recursos de memoria.
Sintaxis:
TextStreamObject.ReadAll
Código de ejemplo: El siguiente código ilustra el método ASP ReadAll.
ASP
<% dim fs,f,t,x set fs=Server.CreateObject("Scripting.FileSystemObject") set f=fs.CreateTextFile("d:\GFG.txt") f.write("Hello GeeksForGeeks. A computer science portal for geeks") f.close set t=fs.OpenTextFile("d:\GFG.txt",1,false) x=t.ReadAll t.close Response.Write("The entire content in the file is: " & x) %>
Producción:
The entire content in the files is : Hello GeeksForGeeks A computer science portal for geeks.
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA