Preguntas etiquetadas con file-handling

9
¿Cómo mover un archivo?
Miré en la osinterfaz de Python , pero no pude encontrar un método para mover un archivo. ¿Cómo haría el equivalente de $ mv ...en Python? >>> source_files = '/PATH/TO/FOLDER/*' >>> destination_folder = 'PATH/TO/FOLDER' >>> # equivalent of $ mv source_files destination_folder



7
Cómo buscar y reemplazar texto en un archivo con C #
Mi código hasta ahora StreamReader reading = File.OpenText("test.txt"); string str; while ((str = reading.ReadLine())!=null) { if (str.Contains("some text")) { StreamWriter write = new StreamWriter("test.txt"); } } Sé cómo encontrar el texto, pero no tengo idea de cómo reemplazar el texto en el archivo con el mío.


Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.