Discuss this help topic in SecureBlackbox Forum

TElCustomFileSystemAdapter.SetEntryInformation

TElCustomFileSystemAdapter     See also     


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


Changes a file system entry information.

Declaration

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

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

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

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

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

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

Parameters

  • Path - the path to the entry to be modified.
  • EntryInfo - the info to be set.
  • InfoFlags -

Possible info flags:

Return value

    Returns a VFS error code.

Possible values:

Description

    Use this method to change to change certain information about the entry in the file system.

    Note, that info flags setting differs for VCL and .NET versions. To enable several modes in .NET use bitwise OR operation, for example "entryInfoModifyDate | entryInfoCreateDate | entryInfoAccessDate".

See also:     GetEntryInformation    

Discuss this help topic in SecureBlackbox Forum