Main Content

close

SFTP 또는 FTP 서버와의 연결 닫기

구문

설명

예제

close(s)s에 연결된 SFTP 또는 FTP 서버와의 연결을 닫습니다.

예제

모두 축소

FTP 서버 연결을 엽니다. 그런 다음 세션이 종료되면 해당 연결을 닫습니다.

먼저, NCEI(National Centers for Environmental Information) FTP 서버에 연결합니다.

s = ftp('ftp.ngdc.noaa.gov')
  FTP with properties:

                         Host: "ftp.ngdc.noaa.gov"
                     Username: "anonymous"
                         Port: 21
                 ServerLocale: "en_US"
                 DirParserFcn: @matlab.io.ftp.parseDirListingForUnix
                         Mode: "binary"
    LocalDataConnectionMethod: "passive"
       RemoteWorkingDirectory: "/"

서버의 내용을 표시하고 README.txt 파일을 가져옵니다.

dir(s)
 
DMSP                         coastwatch                   international                
INDEX.txt                    dmsp4alan                    ionosonde                    
README.txt                   ftp.html                     mgg                          
STP                          geomag                       pub                          
Snow_Ice                     google12c4c939d7b90761.html  wdc                          
Solid_Earth                  index.html                                                
 
mget(s,'README.txt');

FTP 서버와의 연결을 닫습니다.

close(s)

NCEI(National Centers for Environmental Information)에서 제공하는 FTP 서비스입니다. NCEI 서비스 약관을 보려면 NCEI Privacy Policy, Disclaimer, and Copyright를 참조하십시오.

입력 인수

모두 축소

SFTP 또는 FTP 서버와의 연결로, SFTP 객체 또는 FTP 객체로 지정됩니다.

  • 세션의 마지막에 close를 실행하지 않은 경우 연결 시간이 자동으로 초과되거나 MATLAB®을 종료할 때 연결이 종료됩니다.

  • close는 성공 또는 실패를 나타내는 출력값을 반환하지 않습니다.

버전 내역

R2006a 이전에 개발됨

참고 항목

|