Discuss this help topic in SecureBlackbox Forum

TElSimpleFTPSClient.CreateCompletePath

TElSimpleFTPSClient     See also     


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


Deletes specified directory.

Declaration

[C#]
    void CreateCompletePath(string Path);

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

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

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

[PHP]
    void CreateCompletePath(string $Path)

[Java]
    void createCompletePath(String Path);

Parameters

  • Path - path of the directory to be created

Description

    This method creates a directory and, if needed, its parent directories up to the root. Note, that this method assumes that directory names in the path are separated by either slash (/) or backslash (\). Consequently this method won't work on systems where other symbol is used as a separator.

See also:     Cwd     CDUp     GetCurrentDir     MakeDir    

Discuss this help topic in SecureBlackbox Forum