Interface ISFTP File

App
System Application
Namespace
System.SFTPClient
Versions
28

Procedures, 6

Versions171819202122232425262728

Source2829

Source in 29

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
}