SQL, C#, VB, .net, asp, JavaScript, you name it. Code samples, Error messages and stuff like that. Please add coments if you think I said something stupid :D or if you have a better idea ... or anything at all ...
Tuesday, February 18, 2025
Get a list of filenames in a folder, in text format
Windows (Command Prompt)
Open Command Prompt (Win + R, type cmd, press Enter).
Navigate to the folder:
cd"C:\path\to\your\folder"
Run this command to output filenames to a text file:
dir /b > filelist.txt
This will save the filenames (without details) into filelist.txt in the same folder.
No comments:
Post a Comment