Page 9761 SFTP Folder Content

App
System Application
Namespace
System.SFTPClient
Versions
28
Source table
9760

Versions171819202122232425262728

Source2829

Source in 29

src/System Application/App/SFTP Client/src/SFTPFolderContent.Page.al55 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;

page 9761 "SFTP Folder Content"
{
    Caption = 'SFTP Folder Content';
    PageType = List;
    UsageCategory = None;
    SourceTable = "SFTP Folder Content";
    InsertAllowed = false;
    ModifyAllowed = false;
    DeleteAllowed = false;
    Editable = false;
    Extensible = false;

    layout
    {
        area(Content)
        {
            repeater(Group)
            {

                field("Entry No."; Rec."Entry No.")
                {
                    ApplicationArea = All;
                    Visible = false;
                }
                field(Name; Rec.Name)
                {
                    ApplicationArea = All;
                }
                field("Full Name"; Rec."Full Name")
                {
                    ApplicationArea = All;
                }
                field("Is Directory"; Rec."Is Directory")
                {
                    ApplicationArea = All;
                }
                field(Length; Rec.Length)
                {
                    ApplicationArea = All;
                }
                field("Last Write Time"; Rec."Last Write Time")
                {
                    ApplicationArea = All;
                }
            }
        }
    }
}