How to check is path a file or directory?
I mean in python I can do this
def is_file_or_dir(path):
try:
os.listdir(path)
return 'dir'
except:
return 'file'
Can I do something like this in app inventor?
How to check is path a file or directory?
I mean in python I can do this
def is_file_or_dir(path):
try:
os.listdir(path)
return 'dir'
except:
return 'file'
Can I do something like this in app inventor?
I don't have access to file, I need to do this using saf...