CREATING CONTAING FOLDER LIST IN TEXT Using CMD
If you want to copy only files name use this command
after oppening command promot in same folder or going to directory
dir /b> listmyfolder.txt
if you want to list all details like time date use this command
dir > listmyfolder.txt
if YOU WANT TO LIST A SPECIFIC FILE USE THIS COMMAND
dir /b *.mp3 >listmp3.txt
If you want to list all files containg in sub sub folder use this command
- dir /s /b *.mp3 >listmp3.txt
Comments
Post a Comment