Q&A

  • EInOutError with message 'I/O error 103'
다음과 같이 파일 입출력을 작성하여 보았습니다.



AssignFile(F, filename);

ReSet(F);

Writeln(F,'Just created file with this text in it...');



근데 EInOutError with message 'I/O error 103' 라는 메세지가 발생하는데 뭐가 잘못된 것일까요?

Reset 대신에 ReWrite를 사용할때는 이상이 없는데...



감사합니다.



1  COMMENTS
  • Profile
    배불뚝 2000.02.08 01:37
    김진호 wrote:

    > 다음과 같이 파일 입출력을 작성하여 보았습니다.

    >

    > AssignFile(F, filename);

    > ReSet(F);

    > Writeln(F,'Just created file with this text in it...');

    >

    > 근데 EInOutError with message 'I/O error 103' 라는 메세지가 발생하는데 뭐가 잘못된 것일까요?

    > Reset 대신에 ReWrite를 사용할때는 이상이 없는데...

    >

    > 감사합니다.

    >



    안녕하세요..

    assignfile한 후에 reset은 read, rewrite은 write할 때 사용해야 하는것으로 알고 있습니다. 그러니까 read용으로 열린 F에 write하려고 해서 에러가 난 것 같습니다.

    assignfile을 help에서 참고하세요.