0
votes
How can I tell if a file or folder is busy, e.g. the Finder is busy copying to it?
It looks to me like partially copied files have a file type of "brok" and a creator code of "MACS".
I don't believe that the Finder marks in any way the copies of folders that it is in the …
3
votes
Get file creation time with Python on Mac
Using ctypes to access the system call stat64 (works with Python 2.5+):
from ctypes import *
class struct_timespec(Structure):
_fields_ = [('tv_sec', …
5
votes
How can I get the behavior of GNU’s readlink -f on a Mac?
You may be interested in realpath(3), or Python's …
