gpt4 book ai didi

python - 预期的 LP_SHFILEOPSTRUCTW 实例而不是指向 SHFILEOPSTRUCTW 的指针(python ctypes)

转载 作者:行者123 更新时间:2023-11-28 19:04:40 28 4
gpt4 key购买 nike

我正在使用以下代码在 Windows 上执行一些文件系统操作(复制/移动/重命名文件和文件夹)。此代码需要 pywin32。

from win32com.shell import shell, shellcon
from ctypes.wintypes import HWND, UINT, LPCWSTR, BOOL, WORD
from ctypes import c_void_p, Structure, windll, POINTER, byref

src = unicode(os.path.abspath(_src_) + '\0', 'utf-8')
dest = unicode(os.path.abspath(_dest_) + '\0', 'utf-8')

class SHFILEOPSTRUCTW(Structure):
_fields_ = [("hwnd", HWND),
("wFunc", UINT),
("pFrom", LPCWSTR),
("pTo", LPCWSTR),
("fFlags", WORD),
("fAnyOperationsAborted", BOOL),
("hNameMappings", c_void_p),
("lpszProgressTitle", LPCWSTR)]

SHFileOperationW = windll.shell32.SHFileOperationW
SHFileOperationW.argtypes = [POINTER(SHFILEOPSTRUCTW)]

args = SHFILEOPSTRUCTW(wFunc=UINT(op), pFrom=LPCWSTR(src), pTo=LPCWSTR(dest), fFlags=WORD(flags), fAnyOperationsAborted=BOOL())

result = SHFileOperationW(byref(args))
aborted = bool(args.fAnyOperationsAborted)

if not aborted and result != 0:
# Note: raising a WindowsError with correct error code is quite
# difficult due to SHFileOperation historical idiosyncrasies.
# Therefore we simply pass a message.
raise WindowsError('SHFileOperationW failed: 0x%08x' % result)

标志总是:shellcon.FOF_SILENT | shellcon.FOF_NOCONFIRMATION | shellcon.FOF_NOERRORUI | shellcon.FOF_NOCONFIRMMKDIR

op 用于例如:shellcon.FO_COPY

我遇到的问题是有时这个函数会给我错误:

ArgumentError: argument 1: <type 'exceptions.TypeError'>: expected LP_SHFILEOPSTRUCTW instance instead of pointer to SHFILEOPSTRUCTW 

尤其是在处理很长的路径时(例如 len(dest)=230)

我在这里做错了什么?

[编辑]

有一个 shell.SHFileOperation 但我们需要使用自定义包装器 SHFileOperationW 来支持 unicode。

[编辑2]

正如 Barmak Shemirani 所写,在 python3 中,您可以简单地使用 shell.SHFileOperation,它可以处理任何特殊的 unicode 字符。如果我能在 python2 中找到解决此问题的解决方案,我将在此处分享。

最佳答案

在版本 3 中,您可以使用 shell.SHFileOperationSHFILEOPSTRUCT这也会在需要时附加双空终止符。

from win32com.shell import shell, shellcon

shell.SHFileOperation((
None,
shellcon.FO_COPY,
"c:\\test\\test1.txt\0c:\\test\\test2.txt",
"c:\\test\\ελληνική+漢語+English",
shellcon.FOF_SILENT | shellcon.FOF_NOCONFIRMATION |
shellcon.FOF_NOERRORUI | shellcon.FOF_NOCONFIRMMKDIR,
None,
None))

关于python - 预期的 LP_SHFILEOPSTRUCTW 实例而不是指向 SHFILEOPSTRUCTW 的指针(python ctypes),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48448611/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com