| MATLAB Function Reference | ![]() |
Create new directory on FTP server
Syntax
Description
mkdir(f,'dirname')
creates the directory dirname in the current directory of the FTP server f, where f was created using ftp, and where dirname is a pathname relative to the current directory on f.
Examples
Connect to server testsite, view the contents, and create the directory newdir in the directory testdir.
test=ftp('ftp.testsite.com') dir(test) . .. otherfile.m testdir mkdir(test,'testdir/newdir'); dir(test,'testdir) . .. newdir
See Also
| mkdir | mkpp | ![]() |
© 1994-2005 The MathWorks, Inc.