• Basics
  • Abyss
  • C# & Razor
  • JavaScript & TS
  • Web API
  • .net API

    Show / Hide Table of Contents

    Interface IFolder

    An ADAM (Automatic Digital Asset Management) folder. This simple interface assumes that it uses int-IDs.

    Inherited Members
    IFolder.HasChildren
    IAsset.Created
    IAsset.Id
    IAsset.ParentId
    IAsset.Modified
    IAsset.Name
    IAsset.Path
    IAsset.PhysicalPath
    IAsset.HasMetadata
    IAsset.Metadata
    IAsset.Url
    IAsset.Type
    Namespace: ToSic.Sxc.Adam
    Assembly: ToSic.Sxc.dll
    Syntax
    [PublicApi_Stable_ForUseInYourCode]
    public interface IFolder : IFolder, IAsset, IAsset, IHasMetadata

    Properties

    | Improve this Doc View Source

    Files

    Get the files in this folder

    Declaration
    IEnumerable<IFile> Files { get; }
    Property Value
    Type Description
    System.Collections.Generic.IEnumerable<IFile>

    A list of files in this folder as IFile

    | Improve this Doc View Source

    Folders

    Get the sub-folders in this folder

    Declaration
    IEnumerable<IFolder> Folders { get; }
    Property Value
    Type Description
    System.Collections.Generic.IEnumerable<IFolder>

    A list of folders inside this folder - as IFolder.

    • Improve this Doc
    • View Source
    Back to top Generated by DocFX