Discuss this help topic in SecureBlackbox Forum

TElSimpleFTPSClient.MakeDir

TElSimpleFTPSClient     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Creates new directory on the server.

Declaration

[C#]
    void MakeDir(string Path);

[VB.NET]
    Sub MakeDir(ByVal Path As String)

[Pascal]
    procedure MakeDir(const Path: string);

[C++]
    void MakeDir(const std::string &Path);

[PHP]
    void MakeDir(string $Path)

[Java]
    void makeDir(String Path);

Parameters

  • Path - new directory path (absolute or relative)

Description

    This method causes the specified directory to be created as a directory (if the path is absolute) or as a subdirectory of the current working directory (if the path is relative).

    Note that this method is quite low-level doesn't create parent directories if they don't exist. If you need to create a complete path (i.e. some of parent directories and the desired directory), use CreateCompletePath method.

See also:     Cwd     CDUp     CreateCompletePath     GetCurrentDir     RemoveDir    

Discuss this help topic in SecureBlackbox Forum