내가 찾을려는 디렉토리가 있는지 없는지 판단하는 함수가????

gbtogether의 이미지

안녕하세여??
소켓통신프로그램을 짜고 있는 학생임다
다름이 아니라 받은 영상을 시간 대 별로 폴더를 만들어(예 13시30분이면 /13-30 )이런식으로 폴더를 만들도록 프로그램이 되어있습니다.
영상은 1초에 1장씩 서버에서 받게 되어있구요

그렇게 되면 13시 30분에 총 60장을 받아야 하는데 그때 마다 mkdir을 써주니 프로그램이 보기 싫게 되는군요

그래서 특정폴더를 체크하는 함수가 혹시 c 에 있는지 궁금합니다
만약 없다면 간단한 조언 부탁드립니다

(특정폴더를 체크해서 있으면 true,없으면 false을 호출하는 함수)

cjh의 이미지

stat()이나 fstat()을 사용하시면 되겠네요.

--
익스펙토 페트로눔

wongi의 이미지

gbtogether wrote:
안녕하세여??
(특정폴더를 체크해서 있으면 true,없으면 false을 호출하는 함수)

#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>

    /* ... */
    struct stat st;
    /* ... */
    if (lstat(dirname, &st) == -1) && errno == ENOENT) {
        /* does not exist */
    } else {
        /* exists */
    }

KISS...
Keep It Small and Simple

익명 사용자의 이미지

access 함수를 사용해보세요.

if( access( filename , R_OK ) == 0 ) /* Exist */
else /* Not found */
xfmulder의 이미지

그냥 stat() 이나 access() 로는 안됩니다.
같은 이름의 일반파일이 존재할수도 있으니까.

stat() 하고 나서 디렉토리인지도 점검해야...

내 자식들도 나처럼 !!

coathanger의 이미지

디렉토리인지.. 파일인지는 어떻게 점검을 해야 하나요?

panda005의 이미지

stat 하고 나오는 struct stat 구조체의 st_mode 멤버를
사용하시면 됩니다.

#include &lt;sys/types.h&gt;
#include &lt;sys/stat.h&gt;
#include &lt;unistd.h&gt;
#include &lt;errno.h&gt;
 
    /* ... */
    struct stat st;
    /* ... */
    if (lstat(dirname, &st) == -1) && errno == ENOENT) {
        /* does not exist */
    } else {
        /* exists */
        if (S_ISDIR (st.st_mode)) {
            /* directory */
        } else {
            /* not directory */
        }
    }

댓글 달기

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