리눅스 read/write 를 printf 하는데 어디서 문제인걸까요?

yangpa1221의 이미지

#include

#include <fcntl.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
 
 
main()
{
	int filedes;
	ssize_t nread;
	char buffer[1024];
	//char content[] = "test \n";
 
 
	// read 'data.txt'
	filedes = open("data.txt", O_RDWR);
	nread = read(filedes, buffer, 1024);
	printf("%s", buffer);
	close(filedes);
 
	// "test"->buffer
	filedes = open("data.txt", O_RDWR);
	write(filedes, content, strlen(content));
	nread = read(filedes, buffer, 1024);	
	printf("%s", buffer);
 
 
	close(filedes);
 
 
}
 
 
--------------------------------------------------------------
data.txt
 
Hello world!!
----------------------------------------------------------------
 
 
파일을 읽고 한번 출력한 다음 그 위에 다른 문자를 입력하고 다시 출력하는 프로그램입니다.
 
위에 읽은다음 출력하는 것은 Hello world!! 까지 나오는데 파일이름인 data.txt도 같이 출력이 될 뿐더러
 
밑에 덮어쓴 다음 출력하는 것은 아예 나오지도 않습니다.
 
어디서 잘못됬는지 영 감도 안잡힙니다.
mirheekl의 이미지

code 태그를 사용해서 소스가 날아가지 않게 올려주시면 좋겠고, content가 코멘트되어 있는등 소스가 날아가지 않았어도 동작이 되지 않는 소스겠네요.

일단 보여지는 것만으로는, 문제가..

- 위에 리딩을 하고 나서 파일을 닫지 않는다. 파일을 닫지 않았으니 포인터도 되감아지지 않았을 겁니다. 파일을 닫고 나서 다시 열든지, 다시 열지 말고 포인터를 되감든지 해야 처음부터 데이터가 써지겠죠. 위 코드상으론 두번째 open함수는 실패했을 것이고, filedes에는 에러코드가 들어있을 것이고, 그러니 파일 출력도 되지 않겠죠.

- 두번째 라이팅을 하고 나서 파일을 다시 읽지 않고 그냥 buffer를 다시 화면에 출력한다. 그러니 위에서 출력한 것과 아래서 출력한 것은 똑같을수밖에 없죠.

파일명이 같이 출력되는 이유는, 읽어들이는 파일에 그게 들어있어서 그런게 아닐까 합니다.

--

yangpa1221의 이미지

코드를 조금 수정했는데 결과는 다르지가 않네요..

일단 read를 두번 하기 때문에 filedes2를 써야하지 않나 싶어서 추가해 봤어요

또 data.txt파일을 열어보면 write는 정상적으로 처리가 됬는데 출력은 아예 안나오네요ㅠㅠ

mirheekl의 이미지

닫기 전까진 핸들을 계속 쓸 수 있습니다. 다시 파일을 여는 건 의미가 없습니다.

그리고 쓰고 나서 다시 읽는 동작이 없는데 버퍼가 변할리가 없는것입니다.

파일 관련 함수에 대해 전반적으로 조금 더 공부해보시는 게 좋을 듯 합니다. 책에 있는 예제만 몇번 따라해봐도 뭐가 문제인지 금방 알아낼 수 있을 거예요.

--

shxodlf3의 이미지

int filedes;
	ssize_t nread;
	char buffer[1024];
	//char content[] = "test \n";
// 주석처리
 
	// read 'data.txt'
	filedes = open("data.txt", O_RDWR);
	nread = read(filedes, buffer, 1024);
// buffer에 쓰고 있는데
	printf("%s", buffer);
	close(filedes);
 
	// "test"->buffer
	filedes = open("data.txt", O_RDWR);
	write(filedes, content, strlen(content));
// 주석처리된 content는 왜 ?? , 그리고 O_RDWR 이니까 그냥 엎어버리겠네요
// 리턴은 -1이나 0처리 되거나 컴파일시 여기서 워닝이나 에러 뜰거 같은데요
	nread = read(filedes, buffer, 1024);	
	printf("%s", buffer);

좀 더 꼼꼼하게 보시고 주석 있는대로 최대한 많이 달아보세요

그리고 반환값은 일단 받아서 확인해 보시는게 문제파악에 많은 도움이 됩니다

1년차 임베디드 소프트쟁이 입니다

시스템에 관심이 많습니다

댓글 달기

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