AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de archivos externos
  • Reading a line in an external file
fReadLine (Example)
Reading a line in an external file
WINDEVJavaCódigo de Usuario (UMC) The following code is used to display the content of a text file in an edit control (EDT_EditFile). Each read operation corresponds to a line of the text file.
// Declare the variables
FileNameAndPath is string
FileID is int
LineRead is string

// Select the file name and path
FileNameAndPath ="C:\MyDirectories\File.txt"
// Open file
FileID = fOpen(FileNameAndPath)
// Display an error message if no file was opened
IF FileID = -1 THEN
	Error(ErrorInfo(errMessage))
ELSE
	LOOP
		// Read the first line of the file
		LineRead = fReadLine(FileID)
		IF ErrorOccurred THEN
			Error(ErrorInfo())
			BREAK
		END
		// End of file?
		IF LineRead = EOT THEN BREAK
		// Process the line currently read
		// Here, add an edit control at the end
		EDT_FileContent += [CR] + LineRead
	END
	// Close the file
	fClose(FileID)
	ToastDisplay("File reading completed")
END
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 25/03/2025

Señalar un error o enviar una sugerencia | Ayuda local