Manejo de Files.

05/10/2004 - 22:43 por Dany | Informe spam
Que pex Masters!

Abusando de su inteligencia

Alguien me puede decir que clase de .Net se usa para
crear archivos .Txt y manipularlos?

Si no es mucha molestia un ejemplillo de como crear un txt
y abrirlo, agregarle texto, guardarlo y renombrar el
archivo.

Por su amabilidad Gracias, Masters.

Danky.

Preguntas similare

Leer las respuestas

#1 Misael Monterroca
05/10/2004 - 23:51 | Informe spam
Tomado de la documentación

Imports System
Imports System.IO

Class Test
Public Shared Sub Main()
' Create an instance of StreamWriter to write text to a file.
Dim sw As StreamWriter = New StreamWriter("TestFile.txt")
' Add some text to the file.
sw.Write("This is the ")
sw.WriteLine("header for the file.")
sw.WriteLine("-")
' Arbitrary objects can also be written to the file.
sw.Write("The date is: ")
sw.WriteLine(DateTime.Now)
sw.Close()
End Sub
End Class


Saludos!
http://www.neo-mx.com/blog




"Dany" wrote in message
news:2ca301c4ab1c$09e0add0$

Que pex Masters!

Abusando de su inteligencia

Alguien me puede decir que clase de .Net se usa para
crear archivos .Txt y manipularlos?

Si no es mucha molestia un ejemplillo de como crear un txt
y abrirlo, agregarle texto, guardarlo y renombrar el
archivo.

Por su amabilidad Gracias, Masters.

Danky.
Respuesta Responder a este mensaje
#2 Octavio Hernandez
06/10/2004 - 00:43 | Informe spam
Con permiso de Misael, reescribo su ejemplo en C#, a mí la sintaxis Basic no
me "mola" (tonterías mías)

using System;
using System.IO;

public class Test
{
public static void Main()
{
// Create an instance of StreamWriter to write text to a file.
StreamWriter sw = new StreamWriter("TestFile.txt");
// Add some text to the file.
sw.Write("This is the ");
sw.WriteLine("header for the file.");
sw.WriteLine("-");
// Arbitrary objects can also be written to the file.
sw.Write("The date is: ");
sw.WriteLine(DateTime.Now);
sw.Close();
}
}

Slds,

Octavio
Respuesta Responder a este mensaje
#3 Misael Monterroca
06/10/2004 - 01:36 | Informe spam
jajajajaja, antes me gustaba basic pero ultimamente como que le he tomado
algo de tirria jeje...

y por lo del código fue error de pegado ;)

gracias!

Saludos!
http://www.neo-mx.com/blog




"Octavio Hernandez" wrote in message
news:%
Con permiso de Misael, reescribo su ejemplo en C#, a mí la sintaxis Basic


no
me "mola" (tonterías mías)

using System;
using System.IO;

public class Test
{
public static void Main()
{
// Create an instance of StreamWriter to write text to a file.
StreamWriter sw = new StreamWriter("TestFile.txt");
// Add some text to the file.
sw.Write("This is the ");
sw.WriteLine("header for the file.");
sw.WriteLine("-");
// Arbitrary objects can also be written to the file.
sw.Write("The date is: ");
sw.WriteLine(DateTime.Now);
sw.Close();
}
}

Slds,

Octavio


Respuesta Responder a este mensaje
#4 Braulio Diez
06/10/2004 - 09:50 | Informe spam
Hola !

Para renombrar ficheros, mirate: Directory.Move

public static void Move(
string sourceDirName,
string destDirName
);

(System.IO)

Para escribir un fichero:

using System;
using System.IO;

namespace Tests
{
/// <summary>
/// Summary description for Class1.
/// </summary>
class Class1
{
/// <summary>
/// The main entry point for the
application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
StreamWriter streamWriter
= null;

streamWriter = File.CreateText
(@"C:\Test.txt");
m_streamWriter.WriteLine
("Prueba");
m_streamWriter.Close();


}
}
}

Buena suerte
Braulio



Que pex Masters!

Abusando de su inteligencia

Alguien me puede decir que clase de .Net se usa para
crear archivos .Txt y manipularlos?

Si no es mucha molestia un ejemplillo de como crear un


txt
y abrirlo, agregarle texto, guardarlo y renombrar el
archivo.

Por su amabilidad Gracias, Masters.

Danky.
.

Respuesta Responder a este mensaje
#5 Octavio Hernandez
06/10/2004 - 14:03 | Informe spam
Misael,

Yo cuando veo VB.NET la impresión que tengo es que el equipo que lo creó ha
hecho un *GRANDISIMO* trabajo para acomodar el lenguaje a los requisitos de
la programación moderna.

Pero de todos modos me quedo con C# :-)

Salu2 - Octavio

"Misael Monterroca" escribió en el mensaje
news:
jajajajaja, antes me gustaba basic pero ultimamente como que le he tomado
algo de tirria jeje...

y por lo del código fue error de pegado ;)

gracias!

Saludos!
http://www.neo-mx.com/blog




"Octavio Hernandez" wrote in message
news:%
> Con permiso de Misael, reescribo su ejemplo en C#, a mí la sintaxis


Basic
no
> me "mola" (tonterías mías)
>
> using System;
> using System.IO;
>
> public class Test
> {
> public static void Main()
> {
> // Create an instance of StreamWriter to write text to a file.
> StreamWriter sw = new StreamWriter("TestFile.txt");
> // Add some text to the file.
> sw.Write("This is the ");
> sw.WriteLine("header for the file.");
> sw.WriteLine("-");
> // Arbitrary objects can also be written to the file.
> sw.Write("The date is: ");
> sw.WriteLine(DateTime.Now);
> sw.Close();
> }
> }
>
> Slds,
>
> Octavio
>
>


Respuesta Responder a este mensaje
Ads by Google
Help Hacer una preguntaSiguiente Respuesta Tengo una respuesta
Search Busqueda sugerida