## https://evdokimovm.github.io/windows/zsh/shell/syntax/highlighting/ohmyzsh/hyper/terminal/2017/02/24/how-to-install-zsh-and-oh-my-zsh-on-windows-10.html
#################################
## Print folder tree structure ##
#################################
tree /F /A
# Save to file
tree /F /A > tree.txt
########################
## Create dummy files ##
########################
#http://www.windows-commandline.com/how-to-create-large-dummy-file/
fsutil file createnew filename length
# For example, to create a dummy file test.txt, with size as 20MB :
fsutil file createnew test.txt 20971520
# Create real data file
# 8 MB : (1,1,17), 16 MB : (1,1,18) etc (last number doubles size)
echo "This is just a sample line appended to create a big file.. " > test.txt
for /L %i in (1,1,18) do type test.txt >> test.txt