當前位置: 首頁>>代碼示例>>Python>>正文


Python Res.FSOpenResourceFile方法代碼示例

本文整理匯總了Python中Carbon.Res.FSOpenResourceFile方法的典型用法代碼示例。如果您正苦於以下問題:Python Res.FSOpenResourceFile方法的具體用法?Python Res.FSOpenResourceFile怎麽用?Python Res.FSOpenResourceFile使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Carbon.Res的用法示例。


在下文中一共展示了Res.FSOpenResourceFile方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: writePlistToResource

# 需要導入模塊: from Carbon import Res [as 別名]
# 或者: from Carbon.Res import FSOpenResourceFile [as 別名]
def writePlistToResource(rootObject, path, restype='plst', resid=0):
    """Write 'rootObject' as a plst resource to the resource fork of path.
    """
    warnings.warnpy3k("In 3.x, writePlistToResource is removed.", stacklevel=2)
    from Carbon.File import FSRef, FSGetResourceForkName
    from Carbon.Files import fsRdWrPerm
    from Carbon import Res
    plistData = writePlistToString(rootObject)
    fsRef = FSRef(path)
    resNum = Res.FSOpenResourceFile(fsRef, FSGetResourceForkName(), fsRdWrPerm)
    Res.UseResFile(resNum)
    try:
        Res.Get1Resource(restype, resid).RemoveResource()
    except Res.Error:
        pass
    res = Res.Resource(plistData)
    res.AddResource(restype, resid, '')
    res.WriteResource()
    Res.CloseResFile(resNum) 
開發者ID:glmcdona,項目名稱:meddle,代碼行數:21,代碼來源:plistlib.py

示例2: mkalias

# 需要導入模塊: from Carbon import Res [as 別名]
# 或者: from Carbon.Res import FSOpenResourceFile [as 別名]
def mkalias(src, dst, relative=None):
    """Create a finder alias"""
    srcfsr = File.FSRef(src)
    # The next line will fail under unix-Python if the destination
    # doesn't exist yet. We should change this code to be fsref-based.
    dstdir, dstname = os.path.split(dst)
    if not dstdir: dstdir = os.curdir
    dstdirfsr = File.FSRef(dstdir)
    if relative:
        relativefsr = File.FSRef(relative)
        # ik mag er geen None in stoppen :-(
        alias = File.FSNewAlias(relativefsr, srcfsr)
    else:
        alias = srcfsr.FSNewAliasMinimal()

    dstfsr, dstfss = Res.FSCreateResourceFile(dstdirfsr, unicode(dstname),
        File.FSGetResourceForkName())
    h = Res.FSOpenResourceFile(dstfsr, File.FSGetResourceForkName(), 3)
    resource = Res.Resource(alias.data)
    resource.AddResource('alis', 0, '')
    Res.CloseResFile(h)

    dstfinfo = dstfss.FSpGetFInfo()
    dstfinfo.Flags = dstfinfo.Flags|0x8000    # Alias flag
    dstfss.FSpSetFInfo(dstfinfo) 
開發者ID:ktraunmueller,項目名稱:Computable,代碼行數:27,代碼來源:macostools.py

示例3: readPlistFromResource

# 需要導入模塊: from Carbon import Res [as 別名]
# 或者: from Carbon.Res import FSOpenResourceFile [as 別名]
def readPlistFromResource(path, restype='plst', resid=0):
    """Read plst resource from the resource fork of path.
    """
    warnings.warnpy3k("In 3.x, readPlistFromResource is removed.",
                      stacklevel=2)
    from Carbon.File import FSRef, FSGetResourceForkName
    from Carbon.Files import fsRdPerm
    from Carbon import Res
    fsRef = FSRef(path)
    resNum = Res.FSOpenResourceFile(fsRef, FSGetResourceForkName(), fsRdPerm)
    Res.UseResFile(resNum)
    plistData = Res.Get1Resource(restype, resid).data
    Res.CloseResFile(resNum)
    return readPlistFromString(plistData) 
開發者ID:glmcdona,項目名稱:meddle,代碼行數:16,代碼來源:plistlib.py

示例4: open_pathname

# 需要導入模塊: from Carbon import Res [as 別名]
# 或者: from Carbon.Res import FSOpenResourceFile [as 別名]
def open_pathname(pathname, verbose=0):
    """Open a resource file given by pathname, possibly decoding an
    AppleSingle file"""
    # No resource fork. We may be on OSX, and this may be either
    # a data-fork based resource file or a AppleSingle file
    # from the CVS repository.
    try:
        refno = Res.FSOpenResourceFile(pathname, u'', 1)
    except Res.Error, arg:
        if arg[0] != -199:
            # -199 is "bad resource map"
            raise 
開發者ID:ktraunmueller,項目名稱:Computable,代碼行數:14,代碼來源:macresource.py

示例5: resource_pathname

# 需要導入模塊: from Carbon import Res [as 別名]
# 或者: from Carbon.Res import FSOpenResourceFile [as 別名]
def resource_pathname(pathname, verbose=0):
    """Return the pathname for a resource file (either DF or RF based).
    If the pathname given already refers to such a file simply return it,
    otherwise first decode it."""
    # No resource fork. We may be on OSX, and this may be either
    # a data-fork based resource file or a AppleSingle file
    # from the CVS repository.
    try:
        refno = Res.FSOpenResourceFile(pathname, u'', 1)
    except Res.Error, arg:
        if arg[0] != -199:
            # -199 is "bad resource map"
            raise 
開發者ID:ktraunmueller,項目名稱:Computable,代碼行數:15,代碼來源:macresource.py

示例6: MyOpenResFile

# 需要導入模塊: from Carbon import Res [as 別名]
# 或者: from Carbon.Res import FSOpenResourceFile [as 別名]
def MyOpenResFile(path):
	mode = 1  # read only
	try:
		resref = Res.FSOpenResFile(path, mode)
	except Res.Error:
		# try data fork
		resref = Res.FSOpenResourceFile(path, u'', mode)
	return resref 
開發者ID:gltn,項目名稱:stdm,代碼行數:10,代碼來源:macUtils.py


注:本文中的Carbon.Res.FSOpenResourceFile方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。