Discuss this help topic in SecureBlackbox Forum

TElCustomFileSystemAdapter.ReadFileTag

TElCustomFileSystemAdapter     See also     


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


Reads the specified file tag value.

Declaration

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

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

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

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

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

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

Parameters

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

Return value

    Returns a VFS error code.

Possible values:

Description

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

See also:     DeleteFileTag     WriteFileTag    

Discuss this help topic in SecureBlackbox Forum