我正在使用基于 python win32com 的 StgCreateStorageEx 调整 testStorage.py 中的代码,以将我自己的 file_id 属性写入任何文件。
根据备用流(尽管不一定来自此 API 调用),应该可以保存到目录/文件夹,但更改标志会产生不同的错误,例如:
from win32com import storagecon
import pythoncom, os, win32api
fname = r"c:\temp\test\test.txt" #works
fname = r"c:\temp\test\test2"
def testit():
m=storagecon.STGM_READWRITE | storagecon.STGM_SHARE_EXCLUSIVE
pss=pythoncom.StgOpenStorageEx(fname, m, storagecon.STGFMT_FILE, 0, pythoncom.IID_IPropertySetStorage)
结果是:
pywintypes.com_error: (-2147024895, '函数不正确。', 无, 无)
编辑: 关于如何在 WinXP、Win7 和 Windows Server 2003/R2 上运行的任何建议?
请注意,最终结果不一定需要使用这个 API,我只需要能够从 Python 高效地完成它。我所说的高效是指不通过许多不同的技术层。