cara menyembunyikan file tertentu dalam python

fn = 'c:\\file.txt'
p = os.popen('attrib +h ' + fn)
t = p.read()
p.close()
Gamerul PRO