I have a line of code that looks like this, which loads all immediate directory names into Variable A, then continues on through the rest of the loop.
for /d %%A in (*) do
How can I change this such that it skips over items in a pre-defined IgnoreList? For instance:
IgnoreList: Item 1, Item 2, Item 3...note that some Items will have spaces.