web-dev-qa-db-ja.com

ctypesからIFileOperationを使用する方法

IFileOperation を使用してpythonコードからファイルをコピーします-

  • それは(pythonよりも)速いです
  • 素敵なダイアログが表示されます
  • Pythonをブロックしない

Windows 10では、Python 3.8-

import ctypes

ctypes.windll.Shell32.IFileOperation

存在しないようです。

IFileOperationを使用してSHFileOperation(非推奨のctypes AP​​Iではない)にアクセスするにはどうすればよいですか?

5
Jay

これ 質問は、Windowsの機能をロードするCOMが実際にはctypesから利用できることを示していますが、もう少し作業が必要ですが、順調に進んでいます。

質問では comtypes.GUID を唯一の(非標準の)依存関係として使用します。

Comtypes自体を見ると、それは純粋なpythonであり、ctypes( CoCreateInstance およびその他すべての場合)を使用しています)、およびCOMオブジェクトのロードと処理に必要なWindows関数へのパス特に見つけることができます-

import ctypes
ctypes.oledll.ole32.CoCreateInstance()

言及された質問のように、CLSIDは明示的に置く必要があります-

IID_IFileOperation  = '{947AAB5F-0A5C-4C13-B4D6-4BF7836FC9F8}'
CLSID_FileOperation = '{3AD05575-8857-4850-9277-11B85BDB8E09}'

ありとあらゆる、小さな純粋なpythonライブラリであるcomtypesは、このタスクには十分に思えます。ctypesをいじりたくない場合は、GUIDまたは、依存関係を気にしません。

ただし、これは comtypes 自体で証明されているように、ctypesで完全に実装可能です。ただし、GUIDを手動で追加する必要があるという警告があります-

from ctypes import *

BYTE, Word, DWORD = c_byte, c_ushort, c_ulong

_StringFromCLSID = oledll.ole32.StringFromCLSID
_ProgIDFromCLSID = oledll.ole32.ProgIDFromCLSID
_CLSIDFromString = oledll.ole32.CLSIDFromString
_CLSIDFromProgID = oledll.ole32.CLSIDFromProgID
_CoCreateGuid    = oledll.ole32.CoCreateGuid

_CoTaskMemFree   = windll.ole32.CoTaskMemFree

class GUID(Structure):
    _fields_ = [("Data1", DWORD),
                ("Data2", Word),
                ("Data3", Word),
                ("Data4", BYTE * 8)]

    def __init__(self, name=None):
        if name is not None:
            _CLSIDFromString(unicode(name), byref(self))

    def __repr__(self):
        return u'GUID("%s")' % unicode(self)

    def __unicode__(self):
        p = c_wchar_p()
        _StringFromCLSID(byref(self), byref(p))
        result = p.value
        _CoTaskMemFree(p)
        return result
    __str__ = __unicode__

    def __cmp__(self, other):
        if isinstance(other, GUID):
            return cmp(bytes(self), bytes(other))
        return -1

    def __nonzero__(self):
        return self != GUID_null

    def __eq__(self, other):
        return isinstance(other, GUID) and \
               bytes(self) == bytes(other)

    def __hash__(self):
        # We make GUID instances hashable, although they are mutable.
        return hash(bytes(self))

    def copy(self):
        return GUID(unicode(self))

    def from_progid(cls, progid):
        """Get guid from progid, ...
        """
        if hasattr(progid, "_reg_clsid_"):
            progid = progid._reg_clsid_
        if isinstance(progid, cls):
            return progid
        Elif isinstance(progid, basestring):
            if progid.startswith("{"):
                return cls(progid)
            inst = cls()
            _CLSIDFromProgID(unicode(progid), byref(inst))
            return inst
        else:
            raise TypeError("Cannot construct guid from %r" % progid)
    from_progid = classmethod(from_progid)

    def as_progid(self):
        "Convert a GUID into a progid"
        progid = c_wchar_p()
        _ProgIDFromCLSID(byref(self), byref(progid))
        result = progid.value
        _CoTaskMemFree(progid)
        return result

    def create_new(cls):
        "Create a brand new guid"
        guid = cls()
        _CoCreateGuid(byref(guid))
        return guid
    create_new = classmethod(create_new)
0
Jay