Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than ole32, prefix the name with the module name and a period.
StgOpenStorage (ole32)
.
C# Signature:
/// <summary>Opens a compound document file and represents it as an IStorage object</summary>
/// <remarks>Use on Windows 2000 and earlier</remarks>
/// <param name="pwcsName">The path and filename of the file to open</param>
/// <param name="pstgPriority">Generally passed as null</param>
/// <param name="grfMode">Access Method</param>
/// <param name="snbExclude">Must be NULL</param>
/// <param name="reserved">Pass as zero (0)</param>
/// <param name="ppstgOpen">out IStorage</param>
/// <returns>int HRESULT</returns>
static extern int StgOpenStorage(
[MarshalAs(UnmanagedType.LPWStr)] string pwcsName
, IStorage pstgPriority
, STGM grfMode // Access Method (uint)
, IntPtr snbExclude // Must be NULL
, uint reserved // Reserved
, out IStorage ppstgOpen); // Returned Storage
Notes:
None.
///PreserveSig set to false automatically converts HRESULTS values to exceptions.
///Note the return value is void not an int (HRESULT).
[DllImport("ole32.dll", PreserveSig = false)]
static extern void StgOpenStorage([MarshalAs(UnmanagedType.LPWStr)] string pwcsName,
IStorage pstgPriority, STGM grfMode, IntPtr snbExclude, uint reserved,
out IStorage ppstgOpen);
The System.IO.Packaging namespace contains public StorageInfo and StreamInfo classes that encapsulate OLE structured storage access. Unfortunately, the StorageRoot class, which is needed to create or open the files, is an internal class. However, you can use reflection to access the methods on StorageRoot if necessary. The code below will open a storage file and convert it to XML where each stream is hex encoded.
Tips & Tricks:
Please add some!
public static void ReadOSSFile(string fileName, XmlWriter writer)
{
int checkResult = StgIsStorageFile(fileName);
Preconditions.RequireArgument(checkResult == 0,
"The specified file is not an OLE Structured Storage file.");
Sample Code:
string pathAndFilename = @"C:\outlookmail.msg"
IStorage storage;
int hResult = StgOpenStorage(pathAndFilename, null, STGM.READ_ONLY, IntPtr.Zero, 0, out storage);
// Then one can use the EnumElements method of the IStorage interface to enum the properties of the OLE2 storage.
private static object InvokeStorageRootMethod(StorageInfo storageRoot, string methodName, params object[] methodArgs)
{
//We need the StorageRoot class to directly open an OSS file. Unfortunately, it's internal.
//So we'll have to use Reflection to access it. This code was inspired by:
//http://henbo.spaces.live.com/blog/cns!2E073207A544E12!200.entry
//Note: In early WinFX CTPs the StorageRoot class was public because it was documented
//here: http://msdn2.microsoft.com/en-us/library/aa480157.aspx
private static string ConvertStreamBytesToHex(StreamInfo streamInfo)
{
using (Stream streamReader = streamInfo.GetStream(FileMode.Open, FileAccess.Read))
{
StringBuilder sb = new StringBuilder();
int currentRead;
while ((currentRead = streamReader.ReadByte()) >= 0)
{
byte currentByte = (byte)currentRead;
sb.AppendFormat("{0:X2}", currentByte);
}
return sb.ToString();
}
}
[DllImport("ole32.dll", CharSet = CharSet.Unicode)]
private static extern int StgIsStorageFile(string fileName);
Click to read this page
5/16/2017 3:40:12 AM - anonymous
TODO - a short description
10/25/2015 7:07:57 AM - erlichmen@_NOSPAM_gmail.com-193.27.93.1
TODO - a short description
10/19/2009 7:36:00 AM - anonymous
Click to read this page
5/16/2017 3:40:12 AM - anonymous
Click to read this page
5/16/2017 3:40:12 AM - anonymous
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).