I need to clear sertain cache from the folder C:Users%USERNAME%AppDataLocal1C1cv8
The cache is stored in different folders that follow the same format of being named “????-????-????-????-????????????” where ? is used as a wildcard character
I tried many different methods such as
@FOR /D %%j in ("C:Users%USERNAME%AppData1C1cv8????????-????-????-????-????????????") do rd /s /q "%%j"
But nothing seems to be working. Anyone have a guess of what I could use?