SolFSStorage.CreateDirectory method
Filter:
Pascal DLL C++ (DLL/Lib) C++ (VCL) C++ (.NET) C# VB.NETOverview
Creates new directory in SolFSStorage.
Declaration
[Pascal]
procedure CreateDirectory(Directory: WideString);
[DLL]
long _stdcall StorageCreateDirectory(unsigned long Storage, const wchar_t* Directory);
[C++ (DLL/Lib)]
void CreateDirectory(unsigned short * Directory);
[C++ (VCL)]
void __fastcall CreateDirectory(WideString Directory);
[C++ (.NET)]
void CreateDirectory(String* directory)
[C#]
void CreateDirectory(string directory)
[VB.NET]
CreateDirectory(directory As String)
Parameters
- Directory - full name of the new directory.
[DLL] Return values
0 if the function succeeded or one of Error codes if the function failed.
Description
Use CreateDirectory if you want to create a new directory in the SolFSStorage.
Note that the parent for the newly created directory should exist before call, otherwise the call fails.
