c프로그래밍 중에 파일삭제요.~

itara의 이미지

remove나 unlink라는 함수를 썼습니다만. 잘 안되네요.

상황이 파일이름만 틀리고 내용은 같은 파일이 여러개 있습니다.

temp1, temp2,... 이렇게요

remove를 쓰면 처음번엔 삭제가 됩니다. 즉 temp1은 지워지는데..

두번째 삭제할때 temp2가 지워지질 않네요. (포크로 여러번 돌립니다.)

system("rm -rf temp*"); 이렇게 해도 안되구요.

파일내용이 같아서 인가요? 얼핏 알고 있기론 삭제가 아니고 그냥

inode만 풀어버린다는걸로 알고 있는데.. 관련이 있나 모르겠네요..

꼭 좀 답변 부탁드립니다..

이만 총총..

세벌의 이미지

error message는 없던가요?

소스를 올린다면 답을 얻기가 더 쉬워질 수도 있을텐데...

불량청년의 이미지

하시고자 하는 작업게 맞는 건지 모르겠지만, 이 함수는 디렉토리내의

모든 파일을 삭제하고 디렉토리까지 삭제합니다.

void dir_delete(void)
{
	int	state		= 0;
	char	*brd_path	= NULL;
	char	*file_path	= NULL;

	struct	dirent	*dir_ent;
	DIR		*dp;

	/*****************************
	 * 디렉토리 경로를 구하고 연다.
	 ******************************/
	brd_path = malloc(sizeof(char) * MAX_STR);
	memset(brd_path, 0x00, MAX_STR);
	sprintf(brd_path, "%s"FLT_FILE"/%s", getenv("HOME"), Dir_Name);
	if ((dp = opendir(brd_path)) == NULL)
	{
		error_usr("해당 디렉토리가 존재하지 않습니다.");
	}

	/**********************************************************************
	 * dir_ent 구조체에 할당되는 디렉토리 내의 파일명을 이용하여 삭제한다.
	 **********************************************************************/
	file_path = malloc(sizeof(char) * MAX_STR);
	while ((dir_ent = readdir(dp)) != NULL)
	{
		if (strcmp(dir_ent->d_name, ".") == 0 || strcmp(dir_ent->d_name, "..") == 0)
			continue;

		memset(file_path, 0x00, MAX_STR);
		sprintf(file_path, "%s/%s", brd_path, dir_ent->d_name);
		state = unlink(file_path);
		if (state != 0)
		{
			error_sys("파일 삭제 에러!");
		}
	}

	state = rmdir(brd_path);
	if (state != 0)
	{
		error_sys("디렉토리 삭제 에러!");
	}

	exit(EXIT_SUCCESS);
}

brd_path 부분은 해당 디렉토리가 있는 경로입니다.

H/W가 컴퓨터의 심장이라면 S/W는 컴퓨터의 영혼이다!

ㅡ,.ㅡ;;의 이미지

itara wrote:
system("rm -rf temp*"); 이렇게 해도 안되구요.

/bin/rm -rf 해보셨나요?


----------------------------------------------------------------------------

댓글 달기

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