Discuss this help topic in SecureBlackbox Forum

TElWebDAVClient.GetFileSize

TElWebDAVClient     See also     


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


Requests the size of the remote file.

Declaration

[C#]
    long GetFileSize(string URL);
    long GetFileSize(TElWebDAVStorageObject Obj);

[VB.NET]
    Function GetFileSize(ByVal URL As String) As Long
    Function GetFileSize(ByVal Obj As TElWebDAVStorageObject) As Long

[Pascal]
    function GetFileSize(const URL : string) : Int64;
    function GetFileSize(Obj : TElWebDAVStorageObject) : Int64;

[C++]
    int64_t GetFileSize(const std::string &URL);
    int64_t GetFileSize(TElWebDAVStorageObject &Obj);
    int64_t GetFileSize(TElWebDAVStorageObject *Obj);

[PHP]
    integer GetFileSize(string $URL)
    integer GetFileSize(TElWebDAVStorageObject $Obj)

[Java]
    long getFileSize(String URL);
    long getFileSize(TElWebDAVStorageObject Obj);

Parameters

  • URL - URL of the file.
  • Obj - ...

Return value

    Returns the size of the file in bytes.

Description

    Use this method to get the size of the remote file.

See also:     Download    

Discuss this help topic in SecureBlackbox Forum