Discuss this help topic in SecureBlackbox Forum

TElCustomFileSystemAdapter.WriteFileTag

TElCustomFileSystemAdapter     See also     


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


Sets the value of the specified file tag.

Declaration

[C#]
    int WriteFileTag(string Path, string TagName, string TagValue);

[VB.NET]
    Function WriteFileTag(ByVal Path As String, ByVal TagName As String, ByVal TagValue As String) As Integer

[Pascal]
    function WriteFileTag(const Path, TagName, TagValue : string) : integer; virtual; abstract;

[C++]
    int32_t WriteFileTag(const std::string &Path, const std::string &TagName, const std::string &TagValue);

[PHP]
    integer WriteFileTag(string $Path, string $TagName, string $TagValue)

[Java]
    TSBInteger writeFileTag(String arg0, String arg1, String arg2);

Parameters

  • Path - the path to the file which tag will be changed.
  • TagName - the name of the desired tag.
  • TagValue - the new value of the tag.

Return value

    Returns a VFS error code.

Possible values:

Description

    Call this method to change the value of the specified file tag.

See also:     DeleteFileTag     ReadFileTag    

Discuss this help topic in SecureBlackbox Forum