feof에 대해...

saose의 이미지

#include<stdio.h>
#include<windows.h>

#define MAX_FILE_LENGHT 250

int main(int argc, char **argv) {

	char *filename;
	unsigned char temp;
	FILE *fp;
	long count=0;
	char buff[16];
	int point=0;
	int endpoint=0;

	if(argc<2) { 
		printf("Usage: {program} filename\n");
		exit(0);
	}

	filename = (char *)malloc(MAX_FILE_LENGHT);
	memcpy(filename, argv[1], strlen(argv[1]));

	if(argc>2) {
		point = atoi(argv[2]);
	}
	if(argc>3) {
		endpoint = atoi(argv[3]);
	}

	// Open it, and check it
	fp = fopen(filename, "r");
	if(fp==NULL) {
		printf("Cannot open file...\n");
		exit(0);
	}

	if(point!=0) fseek(fp, point, SEEK_SET);

	while(!feof(fp)) {
		if(count%16==0) { printf("\n");  printf("%4d: ", count+point);}
		if(count%8==0)  printf(" ");
		fscanf(fp, "%c", &temp);
		printf("%02x ", temp);
		if(isprint(temp)) buff[count%16] = temp; else buff[count%16] = '.';
		if(count%16==15) {
			printf("%s", buff);
		}
		count++;
		if(count==endpoint) { printf(" %s", buff); break; }
	}

	// close file
	fclose(fp);

	return 0;
}

아래와 같은 코드로
한 파일을 읽었는데, (wav)
다른 파일은 eof가 정확히 되서 모두 출력되는데

어떤 파일을 중간에 끊겨버리네요
{program} filename 150 이런식으로 실행시켜서
(프로그램은 커서의 위치를 바꿔줍니다. 150로)
보면 그 뒤부분이 나오긴 하지만.

즉, 파일중간에 eof가 들어갈수있는건가요?

최종호의 이미지

fopen(filename, "rb") 로 해보세요.

윈도우에서는 바이너리와 텍스트 파일을 구분합니다.

텍스트모드일 경우에는 '\n'이 CR+LR 로 되고
(읽는 경우에는 CR+LF 를 '\n'으로 읽고, 쓸때는 '\n'을 CR+LF로 쓰고요)
유닉스와는 다르게 EOF 문자(^Z)가 파일내에 존재합니다.
따라서 바이너리 파일을 텍스트로 열었는데, 바이너리 데이터중에
^Z문자가 있었다면 거기서 파일이 끝났다고 인식하는 것이죠.

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.