@@ -0,0 +1,8 @@
import uos
def file_or_dir_exists(filename):
try:
uos.stat(filename)
return True
except OSError:
return False
The note is not visible to the blocked user.