See other catalogues for
The MathWorks
You may also be interested in
Text version of the page
| | | | | | | | | | | | | |
| | | |
| | | dir (ftp) | | |
| | | |
| | | Purpose Directory contents on FTP server Syntax dir(f,'dirname') d = dir(...) Description dir(f,'dirname') lists the files in the specified directory, dirname, on the FTP server f ,where f was created using ftp.If dirname is unspecified, dir lists the files in the current directory of f. d = dir(...) returns the results in an m-by-1 structure with the following fields for each file: | | |
| | | |
| | | | | | | | | | | Fieldname | Description | Data Type | | | | name | Filename | char array | | | | date | Modification date timestamp | char array | | | | bytes | Number of bytes allocated to the file | double | | | | isdir | 1 if name is a directory; 0 if not | logical | | | | datenum | Modification date as serial date number | char array | | | | | | | | | | |
| | | |
| | | Examples Connect to the MathWorks FTP server and view the contents. tmw=ftp('ftp.mathworks.com'); dir(tmw) README incoming matlab outgoing pub pubs Change to the directory pub/pentium. cd(tmw,'pub/pentium') | | |
| | | |
| | | 2-925 | | |
| | | |
| | | | | | | | | | | | | |