Discuss this help topic in SecureBlackbox Forum

TElCustomFileSystemAdapter.GetEntryInformation

TElCustomFileSystemAdapter     See also     


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


Retrieves information about a file system entry.

Declaration

[C#]
    int GetEntryInformation(string Path, TElVFSEntryInformation EntryInfo);

[VB.NET]
    Function GetEntryInformation(ByVal Path As String, ByVal EntryInfo As TElVFSEntryInformation) As Integer

[Pascal]
    function GetEntryInformation(const Path : string; EntryInfo : TElVFSEntryInformation) : integer; virtual;

[C++]
    int32_t GetEntryInformation(const std::string &Path, TElVFSEntryInformation &EntryInfo);
    int32_t GetEntryInformation(const std::string &Path, TElVFSEntryInformation *EntryInfo);

[PHP]
    integer GetEntryInformation(string $Path, TElVFSEntryInformation $EntryInfo)

[Java]
    int getEntryInformation(String Path, TElVFSEntryInformation EntryInfo);

Parameters

  • Path - path to the desired entry.
  • EntryInfo - the retrieved data will be stored in this object.

Return value

    Returns a VFS error code.

Possible values:

Description

    Use this method to get information about a file system entry.

See also:     SetEntryInformation    

Discuss this help topic in SecureBlackbox Forum