Using the Command Prompt, you can print a list of files in a folder by navigating to the folder in CMD, using the "dir" command to output the file list to a text file, and then opening and printing the text file. For example, to get a list of all files in the E:\movies folder, you would use "dir > list.txt" in CMD after navigating to that folder, which would create a list.txt file containing the file list that could then be opened and printed.