Okay, I've put together something in Python to search directories/sub-directories for files/folders with 2+ spaces in it.
import os
kiriepath = "path goes here"
def twoplusspaces(path):
srchr = os.scandir(path)
for entry in srchr:
if " " in entry.name:
print(entry.name)
if entry.is_dir():
twoplusspaces(path + "\" + entry.name)
srchr.close()
twoplusspaces(kiriepath)
Was good practice! Leaving here in case it might help someone else.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…