=begin
**** Programa que permite leer el contenido de un archivo *****
Autor: Fer Carraro
=end
while true
print "Introduce nombre del archivo:"
STDOUT.flush
archivo=gets.chomp
if archivo == nil or archivo == '' then
print "Debes introducir el nombre del archivo\n"
else
begin
File.foreach(archivo) { |line|
puts "#{line}"
}
rescue Exception => e
print "Error al tratar de abrir el archivo\n"
end
end
#para terminar el ciclo del while
puts "Deseas salir? (Si -> s , No-> n)?: "
salir=gets.chomp
if salir == 's' or salir == 'S' then
break
end
end
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.