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

Last change on this file since 113 was 113, checked in by bduin, 8 years ago
File size: 296 bytes
Line 
1function mkdir(h,dirname)
2%MKDIR Creates a new directory on an FTP site.
3%    MKDIR(FTP,DIRECTORY) creates a directory on the FTP site.
4
5% Matthew J. Simoneau, 14-Nov-2001
6% Copyright 1984-2004 The MathWorks, Inc.
7
8% Make sure we're still connected.
9connect(h)
10
11h.jobject.makeDirectory(dirname);
Note: See TracBrowser for help on using the repository browser.