Saltar al contenido

¿Diferencia entre los modos a, a+, w, w+ y r+ en la función abierta integrada?

Si te encuentras con algún detalle que no entiendes puedes dejarnos un comentario y te responderemos lo mas rápido que podamos.

Solución:

Los modos de apertura son exactamente los mismos que los de la función de biblioteca estándar de C fopen().

El BSD fopen manpage los define de la siguiente manera:

 The argument mode points to a string beginning with one of the following
 sequences (Additional characters may follow these sequences.):

 ``r''   Open text file for reading.  The stream is positioned at the
         beginning of the file.

 ``r+''  Open for reading and writing.  The stream is positioned at the
         beginning of the file.

 ``w''   Truncate file to zero length or create text file for writing.
         The stream is positioned at the beginning of the file.

 ``w+''  Open for reading and writing.  The file is created if it does not
         exist, otherwise it is truncated.  The stream is positioned at
         the beginning of the file.

 ``a''   Open for writing.  The file is created if it does not exist.  The
         stream is positioned at the end of the file.  Subsequent writes
         to the file will always end up at the then current end of file,
         irrespective of any intervening fseek(3) or similar.

 ``a+''  Open for reading and writing.  The file is created if it does not
         exist.  The stream is positioned at the end of the file.  Subse-
         quent writes to the file will always end up at the then current
         end of file, irrespective of any intervening fseek(3) or similar.

Me di cuenta de que de vez en cuando necesito abrir Google de nuevo, solo para crear una imagen mental de cuáles son las principales diferencias entre los modos. Entonces, pensé que un diagrama sería más rápido de leer la próxima vez. Tal vez alguien más lo encuentre útil también.

Misma información, solo en forma de tabla

                  | r   r+   w   w+   a   a+
------------------|--------------------------
read              | +   +        +        +
write             |     +    +   +    +   +
write after seek  |     +    +   +
create            |          +   +    +   +
truncate          |          +   +
position at start | +   +    +   +
position at end   |                   +   +

donde los significados son: (solo para evitar cualquier mala interpretación)

  • leer – se permite la lectura del archivo
  • escribir: se permite escribir en el archivo

  • crear – el archivo se crea si aún no existe

  • truncado: durante la apertura del archivo, se vacía (se borra todo el contenido del archivo)

  • posición al inicio: después de abrir el archivo, la posición inicial se establece al inicio del archivo

  • posición al final: después de abrir el archivo, la posición inicial se establece al final del archivo

Nota: a y a+ agregar siempre al final del archivo – ignora cualquier seek movimientos
POR CIERTO. comportamiento interesante al menos en mi win7 / python2.7, para el nuevo archivo abierto en a+ modo:
write('aa'); seek(0, 0); read(1); write('b') – segundo write se ignora
write('aa'); seek(0, 0); read(2); write('b') – segundo write aumenta IOError

Reseñas y valoraciones

Recuerda que puedes dar visibilidad a este post si te valió la pena.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)


Tags : /

Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *