I'm using windows server 2016. I didn't have this issue earlier. I get the desktop.ini file listed when I run the command below.
import os
os.listdir()
The same folder is being used by another program. I don't know if that is affecting this behavior. Still, I don't want the desktop.ini file in the second program. How can I achieve this?
import os
lst = list(set(os.listdir()) - {'desktop.ini', 'whatever.ini'})