리눅스 mv 명령어 구현 중에 질문해봅니다~

embeddeds0의 이미지

// -- mv 명령어 구현
1 #include
2 #include
3 #include
4 #include
5
6 int file_del(char *file_name)
7 {
8 // 파일 삭제
9 int unlink_retval = unlink(file_name); // 원본파일 제거하여 반환값을 넘겨준다.
10 if (unlink_retval != 0) { // 파일을 올바르게 제거하였는지 검사한다.
11 return 1; // 실패했다면 반환값 1을 넘겨준다.
12 }
13 return 0; // 성공했다면 반환값 0을 넘겨준다.
14 }
15
16 int main(int argc, char *argv[])
17 {
18 char buffer[1024];
19 int fdin, fdout;
20 ssize_t nread;
21 int file_del_retval;
22
23 /* 원본파일 읽기모드로 오픈 */
24 fdin = open(argv[1], O_RDONLY);
25 if (fdin == -1) { // 원본 파일을 여는 데 실패했다면 에러메시지 출력
26 printf("fopen() failed, %s not found \n", argv[1]);
27 exit(1);
28 }
29
30 /* 타겟파일 쓰기모드로 오픈 */
31 fdout = open(argv[2], O_WRONLY|O_CREAT|O_TRUNC, 0644);
32 if (fdout == -1) { // 목적 파일을 여는 데 실패했다면 에러메시지 출력
33 printf("fopen() filed, %s not fount \n", argv[2]);
34 exit(1);
35 }
36
37 /* 원본파일을 타겟파일로 복사 */
38 /* 정상적으로 읽어 들인 내용이 1바이트 이상인 동안 반복문 수행 */
39 while ((nread = read(fdin,buffer,1024)) > 0) {
40 /* write가 비정상적으로 수행되었다. */
41 if (write(fdout,buffer,nread) < nread)
42 {
43 close(fdin);
44 close(fdout);
45 }
46 /* 정상적으로 수행되었다면 파일을 닫아준다 */
47 close(fdin);
48 close(fdout);
49
50 file_del_retval = file_del(argv[1]); // file_del()함수에서 넘긴 반환값을 대입한다.
51 if (0 != file_del_retval) { // 파일을 제거하지 못했다면 에러메시지 출력
52 printf("file (%s) delete fail. \n", argv[1]);
53 }
54 }
55 }

----------------------------------------------------------------------------
일단 위와 같이 소스를 작성했는데요
gcc해보면 아무런 에러없이 실행은 되는데 문제가 이동할 파일이 비어있는 파일일 경우 복사만 되고,
즉, 파일이 그대로 남아있습니다.

그런데 이동할 파일이 비어 있지 않은 파일일 경우에는 이동까지 됩니다. 이때는 원본 파일이 삭제되고 제대로 이동이 되네요.

머가 문제인가요??

shint의 이미지

{}괄호를 잘못 사용하신거 같습니다.

// -- mv 명령어 구현 
#include <stdio.h>
#include <stdlib.h>
#include <memory.h>
 
int file_del(char *file_name)
{
	// 파일 삭제
	int unlink_retval = unlink(file_name); // 원본파일 제거하여 반환값을 넘겨준다.
	if (unlink_retval != 0)// 파일을 올바르게 제거하였는지 검사한다.
	{
		return 1; // 실패했다면 반환값 1을 넘겨준다.
	}
	return 0; // 성공했다면 반환값 0을 넘겨준다.
}
 
int main(int argc, char *argv[])
{
	char buffer[1024];
	FILE* fdin;
	FILE* fdout;
	int nread;
	int file_del_retval;
 
	/* 원본파일 읽기모드로 오픈 */
	fdin = fopen("ReadMe.txt", "rb");
	if (fdin == NULL)	// 원본 파일을 여는 데 실패했다면 에러메시지 출력
	{
		printf("fopen() failed, %s not found \n", argv[1]);
		exit(1);
	}
 
	/* 타겟파일 쓰기모드로 오픈 */
	fdout = fopen("ReadMe2.txt", "wb");
	if (fdout == NULL)	// 목적 파일을 여는 데 실패했다면 에러메시지 출력
	{
		printf("fopen() filed, %s not fount \n", argv[2]);
		exit(1);
	}
 
	/* 원본파일을 타겟파일로 복사 */
	/* 정상적으로 읽어 들인 내용이 1바이트 이상인 동안 반복문 수행 */
	while ((nread = fread(buffer, 1, 1, fdin)) > 0)
	{
		/* write가 비정상적으로 수행되었다. */
		if (fwrite(buffer,nread,1,fdout) < nread)
		{
			fclose(fdin);
			fclose(fdout);
		}
	}
	/* 정상적으로 수행되었다면 파일을 닫아준다 */
	fclose(fdin);
	fclose(fdout);
 
	file_del_retval = file_del("ReadMe.txt"); // file_del()함수에서 넘긴 반환값을 대입한다.
	if (0 != file_del_retval) { // 파일을 제거하지 못했다면 에러메시지 출력
		printf("file (%s) delete fail. \n", argv[1]);
	}
 
	return 0;
}

----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.

매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.

각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com

댓글 달기

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