source:
prextra/@ftp/mkdir.m
@
150
Last change on this file since 150 was 113, checked in by bduin, 8 years ago | |
---|---|
File size: 296 bytes |
Rev | Line | |
---|---|---|
[113] | 1 | function 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. | |
9 | connect(h) | |
10 | ||
11 | h.jobject.makeDirectory(dirname); |
Note: See TracBrowser
for help on using the repository browser.