Встроенная функция открытого Python: разница между режимами a, a +, w, w + и r +?

Вы просмотрели эту библиотеку?

http://code.google.com/p/csharp-usb-hid-driver/

517
задан Simon 8 June 2018 в 18:47
поделиться

2 ответа

Режимы открытия точно такие же, как и для стандартной библиотечной функции C fopen () .

Справочная страница BSD fopen ] определяет их следующим образом:

 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.
666
ответ дан 22 November 2019 в 22:18
поделиться

Параметры такие же, как для функции fopen в стандартной библиотеке C:

w усекает файл, перезаписывая все, что уже было

a добавляет к файлу, добавляя то, что уже было

w + открывается для чтения и записи, усекая файл, но также позволяет вам прочитать то, что было записанный в файл

a + открывается для добавления и чтения, что позволяет вам как добавлять файлы в файл, так и читать его содержимое

38
ответ дан 22 November 2019 в 22:18
поделиться
Другие вопросы по тегам:

Похожие вопросы: