The new touched() was far too expensive. Re-enabled the old one, the ae-based one is available as touched_ae(). Have to read up on the subject of telling the finder about changes.

This commit is contained in:
Jack Jansen 2001-02-14 17:06:32 +00:00
parent 3112bc10ee
commit 3ff82a3a4c
1 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ def mkdirs(dst):
mkdirs(head)
os.mkdir(dst, 0777)
def touched_old(dst):
def touched(dst):
"""Tell the finder a file has changed"""
file_fss = macfs.FSSpec(dst)
vRefNum, dirID, name = file_fss.as_tuple()
@ -69,7 +69,7 @@ def touched_old(dst):
now = now + 1
dir_fss.SetDates(crdate, now, bkdate)
def touched(dst):
def touched_ae(dst):
"""Tell the finder a file has changed"""
import Finder
f = Finder.Finder()