You can use the ls command to list files in the current directory.  However, the ls command and its derivatives will ignore "dot-files," which are those files in your directory that begin with a period (.), unless you include the -a argument: 

ls -a          shows all files, including hidden .files
ls -al         same as above, but in long format to show size

For more information, see:
man ls