Discuss this help topic in SecureBlackbox Forum

TElSimpleFTPSServer.UseUTF8

TElSimpleFTPSServer     See also     


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


Specifies whether UTF8 conversion is to be used when parsing file names received from the server.

Declaration

[C#]
    bool UseUTF8;

[VB.NET]
    Property UseUTF8 As Boolean

[Pascal]
    property UseUTF8 : boolean;

[C++]
    bool get_UseUTF8();
    void set_UseUTF8(bool Value);

[PHP]
    bool get_UseUTF8()
    void set_UseUTF8(bool $Value)

[Java]
    boolean getUseUTF8();
    void setUseUTF8(boolean Value);

Description

    This property specifies, whether UTF8 conversion of filenames is used by the server. It is set automatically according to protocol flow, but user could also set it to the desired value.
    Note, that for VCL edition all file names should be converted to/from UTF-8, using the SBStrUtils.StrToUtf8 and SBStrUtils.UTF8ToStr methods.

See also:     SBStrUtils.SetDefaultCharset    

Discuss this help topic in SecureBlackbox Forum