stream 에서 byteCount 만큼 byte 를 추출하고 폐기합니다. byteCount 만큼 FileStream.readBytes 가 증가합니다. 파싱할 필요가 없는 byte 들을 읽기 위해 FileStream.readString() 을 사용하면, string 으로 변환하는 비용이 발생하므로 이런 경우 FileStream.ignore() 를 호출하는 것이 좋습니다.

Syntax

stream.ignore(byteCount);

Parameter

byteCount

추출할 byte 의 갯수.

Return value

(none)