Interface ISFTP File in 28

App
System Application
Namespace
System.SFTPClient

Procedures, 6

Versions171819202122232425262728latest

Source2829

Source in 28

src/System Application/App/SFTP Client/src/ISFTPFile.Interface.al17 lines, Copyright (c) Microsoft Corporation. MIT

// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.SFTPClient;

interface "ISFTP File"
{
    Access = Public;
    procedure MoveTo(Destination: Text): Boolean
    procedure Name(): Text
    procedure FullName(): Text
    procedure IsDirectory(): Boolean
    procedure Length(): BigInteger
    procedure LastWriteTime(): DateTime
}

Procedures, 6

NameParametersReturnsAccessObsolete
MoveTo(Text)Booleanpublic-
Name()Textpublic-
FullName()Textpublic-
IsDirectory()Booleanpublic-
Length()BigIntegerpublic-
LastWriteTime()DateTimepublic-