• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How do i make a *.txt file of all the files I have in a folder?

using a pipe command (in dos I know this works) here's the commands for dos

dir > files.txt

the ">" is the pipe command

good luck

*nix works similarly, I believe it's the same command (>), if not it might be the "|" bar command
 
Shadow is right, but one minor nit-pick on the terminology. The angle bracket is the redirection symbol. The vertical bar is the pipe. Redirection changes where a program gets its input or where it sends its output. A pipe connects the output of one program to the input of another.
 
Back
Top