C언어 FTP 파일 전송시 오류 관련 문의

elitek의 이미지

Client 환경 Solaris Unix.
server 환경 HP Unix

Client C에서 파일 전송 Script만 생성 후 실행
Server 일정 시간 간격으로 특정 Folder 파일 생성시 파일 읽고 처리 완료 후 삭제

이 과정에서, Server에서 파일 처리를 못하고 없어지는 경우가 종종 발생합니다.
추측되는 상황은 Server에서 파일 읽어 갈때, Client에서는 아직 파일 전송이 완료가
안 된 상황인데, 읽어 가면서 발생되는 문제가 아닐까 생각됩니다.

현재 Server쪽의 Source는 수정이 불가능한 상황입니다.

Client쪽에서는 현재 Script상에서 파일 전송이 제대로 완료되었는지 확인 할 수 있는
방법이 없어서, 구현 방식을 바꾸어야 할 거 같은데 제가 Program 관련 지식이 없어서요..

C언어로 FTP 전송 구현할 수 있는 기본적인 예제 만이라도 좀 알려주실 분 없으신가요?
전송 완료 후 File size만 Check 가능 하다면, 해결이 가능 할 것 같습니다.
도움 부탁 드립니다.

현재 Client 전송 관련 Source---
make_ftp_file(host,rf_name,current_dt)
char *host;
char *rf_name;
char *current_dt;
{
FILE *fp;
char u_command[50];
char tmps[20];
char buf[256];
//printf("make_ftpfile : %s\n",FTP_EXE_FILE);
fp = fopen(FTP_EXE_FILE, "w");
fprintf(fp, "#!/bin/sh\n");
sprintf(buf, "echo \"---> DATE `/bin/date` %s\" >> %s_%s\n",host,FTP_IMSI_LOG,host);
fprintf(fp, buf);
sprintf(buf, "ftp -nv <<+ >> %s_%s\n",FTP_IMSI_LOG,host);
fprintf(fp,buf);
sprintf(buf, "open %s\n",host);
fprintf(fp, buf);
fprintf(fp, "user testeqp testeqp \n");
fprintf(fp, "epsv4\n");
fprintf(fp, "ascii\n");
fprintf(fp, "cd /TEST/RAW \n");

strcpy(tmps,SYS_ID);
strcat(tmps,"-");
strcat(tmps,current_dt);
strcat(tmps,".eqp");
fprintf(fp, "put %s %s\n",rf_name,tmps);

fprintf(fp, "close\n");
fprintf(fp, "bye\n");
fprintf(fp, "+\n");
fclose(fp);

strcpy(u_command, "chmod 777 ");
strcat(u_command, FTP_EXE_FILE);
system(u_command);
}

elitek의 이미지

C언어로 FTP구현할 수 있는 간단한 예제 source 부탁 드립니다.
FTP 파일 전송 후 전송된 파일의 Size와 전송하기전 파일의 Size를 Check할 수만 있으면,
해결이 가능할 것 같습니다. 도움 부탁 드립니다.

haze11의 이미지

curl 쓰시면 편하게 만드실 듯.. =.=

mithrandir의 이미지

파일을 올리실때 임시 파일명으로 올리시고, 전송 완료후 원하시는 파일이름으로 바꾸시면 될 것 같아요.
중간상태가 없으면 되는 것 아닐까요?

언제나 삽질 - http://tisphie.net/typo/
프로그래밍 언어 개발 - http://langdev.net

언제나 삽질 - http://tisphie.net/typo/
프로그래밍 언어 개발 - http://langdev.net

댓글 달기

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