Documentation Center |
List folder contents
ls
ls name
list = ls(name)
ls lists the contents of the current folder.
ls name lists the files and folders in the current folder that match the specified name. You can use wildcards.
list = ls(name) returns the files and folders in the current folder that match the specified name to list.
List all the files and folders in the current folder:
ls
List all the files and folders in the current folder that begin with the letter h:
ls h*
Return the list of all the files and folders in the current folder to mylist:
mylist = ls;
View files and folders in the Current Folder browser.
Open the Current Folder browser by issuing the filebrowser command.