SolFSStorage.Reopen method
Filter:
Pascal DLL C++ (DLL/Lib) C++ (VCL) C++ (.NET) C# VB.NETOverview
Reopens a previously opened storage object.
Declaration
[Pascal]
procedure Reopen;
[DLL]
long _stdcall StorageReopen(unsigned long Storage, const wchar_t* FileName);
[C++ (DLL/Lib)]
void Reopen();
[C++ (VCL)]
void Reopen();
[C++ (.NET)]
void Reopen();
[C#]
void Reopen();
[VB.NET]
Sub Reopen()
Parameters
- [DLL] Storage - a handle to the opened SolFSStorage.
- [DLL] FileName - the name of the storage file on physical media.
[DLL] Return values
0 if the function succeeded or one of Error codes if the function failed.
Description
Use this method to re-open the storage, which has been opened before a call to Reopen() method. Re-opening means reopening the underlying storage media (via file API or callback functions) without re-reading it or re-initializing the internal structures. The method is useful when the storage is located on the removeable media which was removed and then inserted again.
