summaryrefslogtreecommitdiffstats
path: root/Mac/Demo/applescript/makedisk.py
blob: 981a5ef28695d5cff517af6ba9340fda9b63cb5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Disk_Copy
import macfs
import sys

talker = Disk_Copy.Disk_Copy(start=1)
talker.activate()
filespec = macfs.FSSpec('my disk image.img')
try:
    objref = talker.create('my disk image', saving_as=filespec, leave_image_mounted=1)
except Disk_Copy.Error as arg:
    print("ERROR: my disk image:", arg)
else:
    print('objref=', objref)
print('Type return to exit-')
sys.stdin.readline()