我为我的英语道歉,这不好,但我希望你能理解我的问题。我在使用WinAPI函数StgOpenStorageEx
时遇到问题。我需要获取文件的摘要信息。我找到了一些解决方案,但在所有这些解决方案中我都需要使用StgOpenStorageEx
。因为它不在标准模块中,所以我自己宣称它是从ole32.dll这样导出的
function StgOpenStorageEx (
const pwcsName : POleStr; //Pointer to the path of the
//file containing storage object
grfMode : LongInt; //Specifies the access mode for the object
stgfmt : DWORD; //Specifies the storage file format
grfAttrs : DWORD; //Reserved; must be zero
pStgOptions : Pointer; //Address of STGOPTIONS pointer
reserved2 : Pointer; //Reserved; must be zero
riid : PGUID; //Specifies the GUID of the interface pointer
out stgOpen : //Address of an interface pointer
IStorage ) : HResult; stdcall; external 'ole32.dll';
接下来我需要像这样使用这个功能
var
res, open: hresult;
stg: IStorage;
PropSetStg: IPropertySetStorage;
PropStg: IPropertyStorage;
FileName: string;
const
IID_IPropertySetStorage : TGUID = '{0000013A-0000-0000-C000-000000000046}';
FmtID_SummaryInformation: TGUID = '{F29F85E0-4FF9-1068-AB91-08002B27B3D9}';
function StgOpenStorageEx (
const pwcsName : POleStr; //Pointer to the path of the
//file containing storage object
grfMode : LongInt; //Specifies the access mode for the object
stgfmt : DWORD; //Specifies the storage file format
grfAttrs : DWORD; //Reserved; must be zero
pStgOptions : Pointer; //Address of STGOPTIONS pointer
reserved2 : Pointer; //Reserved; must be zero
riid : PGUID; //Specifies the GUID of the interface pointer
out stgOpen : //Address of an interface pointer
IStorage ) : HResult; stdcall; external 'ole32.dll';
...
implementation
...
FileName:=OpenDialog1.FileName;
res:=StgOpenStorageEx(PWideChar(FileName),
STGM_READ or STGM_SHARE_DENY_WRITE,
STGFMT_FILE,
0, nil, nil, @IID_IPropertySetStorage, stg);
OleCheck(res);
PropSetStg := Stg as IPropertySetStorage;
open:=PropSetStg.Open(FmtID_SummaryInformation,
STGFMT_FILE or STGM_READ or STGM_SHARE_EXCLUSIVE, PropStg); //open=-2147287038
OleCheck(open); // EOleSysError "%1 could not be found
...
在指令OLECheck(Open)
上,我有一个EOleSysError“找不到%1”。
Open
返回-2147287038
请告诉我我做错了什么 Article with full function code
IDE:Embarcadero®Delphi®XE版本15.0.3890.34076
答案 0 :(得分:2)
此代码段尽管处于禁止状态,但仍使用STGFMT_ANY。 http://forum.sources.ru/index.php?showtopic=115495
如果确实有效,也许这是可行的方法。 (该代码在unicode Delphi之前使用。需要通常检查和简化升级到支持Unicode的Delphi)
该代码片段使用 StringToOleStr 而不是类型转换,因为即使在Delphi XE2中,该函数仍然不仅仅是类型转换 - 它可能会有所不同。
该片段还区分具有内部属性的文件(如DOC,XLS,MSC文件)和那些只有'可能'被Vista中的NTFS-5包装到外部属性中的文件。例如,DOC和JPEG文件的STGFMT_ *常数应该不同。
http://msdn.microsoft.com/en-us/library/windows/desktop/aa380330.aspx