Discuss this help topic in SecureBlackbox Forum

TElCustomFileSystemAdapter.DeleteFileTag

TElCustomFileSystemAdapter     See also     


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


Deletes a file tag.

Declaration

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

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

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

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

[PHP]
    integer DeleteFileTag(string $Path, string $TagName)

[Java]
    TSBInteger deleteFileTag(String arg0, String arg1);

Parameters

  • Path - the path to the file.
  • TagName - the name of the tag to be deleted.

Return value

    Returns a VFS error code.

Possible values:

Description

    Use this method to delete the file tag.

See also:     ReadFileTag     WriteFileTag    

Discuss this help topic in SecureBlackbox Forum