Search found 1 match

by Moonshine
18 Apr 2017 00:25
Forum: DOS Batch Forum
Topic: I want to skip "Appdata" when "dir /b /s /ad" command is executed
Replies: 2
Views: 3272

I want to skip "Appdata" when "dir /b /s /ad" command is executed

I am listing all of the folders in %userprofile% but Appdata is big and I dont find it relevant, can I make dir avoid Appdata?

Code: Select all

@echo off
cd %userprofile%
dir /b /s /ad
pause