File 을 읽거나 쓸수가 없다고나와요

avanwz의 이미지

지금 만들고있는 프로그램에서 에러가 나는데 이유를 모르겠네요.
프로그램 구조는 간단하게 루프가있고 루프안에서 함수를 부릅니다.
그 함수는 파일을 열었다 닸았다 하는데 이상하게 이 함수에서 에러를 뿜어냅니다.
퍼미션문제나 그런것도 아니구요 정작문제는 그냥 처음부터 에러가나면되는데 이상하게도
64번째 루프에서 에러를 뿜습니다.

간략하게 구조를 말하자면

int factor = 0;

while(1)
{

multiply("input", factor, "result");
factor++;

}

이런식입니다. 너무나 간단해서 뭐 에러날수도 없는데 이상하게 64번째루프에서 파일을 열수없다고납니다.
물론 열수없다고출력되는건 제가넣은 에러체킹에서 출력되는거구요(시스템출력메세지가아닙니다)

그리고 이건 multiply함수입니다.

multiply(file1, factor, file2)
{

int f1, f2;
f1 = open(file1, 0);
error checking
f2 = creat(file2, 489);
error checking

f1에 factor를 곱해서 그 결과를 f2에 씁니다.

close(f1);
close(f2);
}

정말 문제는 왜 하필이면 첫번째가 아닌 64번째루프에서 에러가 나는지 모르겠네요.
input파일은 간단히 숫자만가지고있구요 factor를 input파일안에있는 숫자와 곱해서 result파일에다가
결과를 쓰는겁니다. input파일과 result파일은 고정이구요.
에러나기 전에는 결과갑도 맞구요 잘돌아갑니다.
파일이 다른곳에서 중복으로 열려있지도 않구요. 흠...귀신이 곡할노릇입니다.
f1 = open 이거 리턴값이 값자기 -1로되면서 에러가납니다.

도와주세요.

dorado2의 이미지

errno 한 번 찍어서 정확한 error 종류를 한 번 보시죠.

그리고 실제로 while loop를 저렇게 작성하신 건가요?

#include <errno.h>
#include <string.h>
 
...
f1 = open(file1, 0);
if (f1 < 0)
  fprintf(stderr, "errno = %d, error = %s \n", errno, strerror( errno));
avanwz의 이미지

strerror(errno) 이거는 타입이 틀려서 컴파일오류가 나길래 일단 errno만 알아낸상태구요

errno값이 24가 나오네요. 인터넷에 보니까 too many open files 라는데 흠....

이해가 안가는것이 close()문 사용하면 파일 닫히는거 아닌가요? 분명 파일을 open하고나서 바로 닫는데

왜이런 오류가 나는지 ㅗ르겠어요

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.