source: prextra/@ftp/close.m @ 113

Last change on this file since 113 was 113, checked in by bduin, 8 years ago
File size: 313 bytes
Line 
1function close(h)
2%CLOSE Close the connection with the server.
3%    CLOSE(FTP) closes the connection with the server.
4
5% Matthew J. Simoneau, 14-Nov-2001
6% Copyright 1984-2004 The MathWorks, Inc.
7
8try
9    h.jobject.disconnect;
10catch
11    % Do nothing.  The error was probably that we were already disconnected.
12end
Note: See TracBrowser for help on using the repository browser.