教下我&叫下我

教下我&叫下我

我不会,教下我 有福利,叫下我 致终身学习者! https://jiaoxiawo.com
tg_channel
twitter

Save directory and file paths under Windows

Save the paths of all directories and files in the current directory#

dir /b /s > filelist.txt

Save only the paths of all files in the current directory#

for /r %i in (*) do @echo %i >> filelist.txt

Save the paths and sizes of all files in the current directory#

for /r %i in (*) do @echo %~fi %~zi >> filelist_with_sizes.txt

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.