Use the command: ls z* for those files in your current working directory.
For windows: dir *.doc For Unix/Linux: ls *.doc
Not sure what you mean by 'directory works' but a common command is 'ls' to see what is in the directory.
Mkdir command creates a subdirectory under a directory (MD creates a directory) . The command Chdir changes the current Default directory(CD changes the current directory). The Rmdir removes the subdirectory(RD removes a directory).
To delete directory and sub directory in single command, use "deltree" command..
Go to the directory by "CD" command say "CD MyDoc" and press enter.. Now run "dir" command to see the contents of the directory..
ls will list the contents of a directory.
The command pwd displays your current/present working directory.
PWD
The command 'pwd' will identify the full path of the present working directory.
The pwd command prints the working directory. The working directory is the directory you are "in", where operations on files that don't have an absolute path specified will be performed. For instance, if my working directory is /home/username/stuff, then the command echo "test" > test.txt would place the file test.txt in that directory.
Its a wildcard for one character. (Example): if you want to find files in the directory that start with A & have a three letter file extension, you would use: a*.???