반응형
Ruby File.open 모드 및 옵션은 무엇입니까?
루비의File.open
모드 및 옵션을 인수로 사용합니다.전체 모드 및 옵션 목록은 어디에서 찾을 수 있습니까?
Mode | Meaning
-----+--------------------------------------------------------
"r" | Read-only, starts at beginning of file (default mode).
-----+--------------------------------------------------------
"r+" | Read-write, starts at beginning of file.
-----+--------------------------------------------------------
"w" | Write-only, truncates existing file
| to zero length or creates a new file for writing.
-----+--------------------------------------------------------
"w+" | Read-write, truncates existing file to zero length
| or creates a new file for reading and writing.
-----+--------------------------------------------------------
"a" | Write-only, starts at end of file if file exists,
| otherwise creates a new file for writing.
-----+--------------------------------------------------------
"a+" | Read-write, starts at end of file if file exists,
| otherwise creates a new file for reading and
| writing.
-----+--------------------------------------------------------
"b" | Binary file mode (may appear with
| any of the key letters listed above).
| Suppresses EOL <-> CRLF conversion on Windows. And
| sets external encoding to ASCII-8BIT unless explicitly
| specified.
-----+--------------------------------------------------------
"t" | Text file mode (may appear with
| any of the key letters listed above except "b").
opt
루비 1.9의 새로운 기능입니다.다양한 옵션은 에 설명되어 있습니다.IO.new
: www.ruby-doc.org/core/IO.html
언급URL : https://stackoverflow.com/questions/3682359/what-are-the-ruby-file-open-modes-and-options
반응형
'IT' 카테고리의 다른 글
"이전 형제" 선택기가 있습니까? (0) | 2023.06.02 |
---|---|
배열이 비어 있는지 또는 존재하는지 확인하는 방법은 무엇입니까? (0) | 2023.06.02 |
WPF 데이터 그리드의 텍스트 정렬 (0) | 2023.06.02 |
mongodb에서 중복 문서를 가장 빨리 제거하는 방법 (0) | 2023.06.02 |
@Java로 주석 문서화 (0) | 2023.06.02 |