# import from tunnpy test path 
import sys

sys.path.append("/home/ambagasdowa/gitdowa/tunnpy/tunnpy/core/")

from Filedirs import Filedirs as fd


#Filedirs
chk = fd()
file = "/tmp/tst/file.txt"

chk.debug = True
chk.make = True
chk.path = file

print( chk.CheckFile() )


chk.path = '/tmp/tss'


print( chk.CheckDir() )

