// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.Management.Automation; using Dbg = System.Management.Automation; namespace Microsoft.PowerShell.Commands { /// /// The get-childitem command class. /// This command lists the contents of a container. /// /// /// [Cmdlet(VerbsCommon.Get, "ChildItem", DefaultParameterSetName = "Items", SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096492")] public class GetChildItemCommand : CoreCommandBase { /// /// The string declaration for the Items parameter set in this command. /// /// /// The "Items" parameter set includes the following parameters: /// -filter /// -recurse /// private const string childrenSet = "Items"; private const string literalChildrenSet = "LiteralItems"; #region Command parameters /// /// Gets or sets the path for the operation. /// [Parameter(Position = 0, ParameterSetName = childrenSet, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true)] public string[] Path { get { return _paths; } set { _paths = value; } } /// /// Gets or sets the literal path parameter to the command. /// [Parameter(ParameterSetName = literalChildrenSet, Mandatory = true, ValueFromPipeline = false, ValueFromPipelineByPropertyName = true)] [Alias("PSPath", "LP")] public string[] LiteralPath { get { return _paths; } set { base.SuppressWildcardExpansion = true; _paths = value; } } /// /// Gets or sets the filter property. /// [Parameter(Position = 1)] public override string Filter { get { return base.Filter; } set { base.Filter = value; } } /// /// Gets or sets the include property. /// [Parameter] public override string[] Include { get { return base.Include; } set { base.Include = value; } } /// /// Gets or sets the exclude property. /// [Parameter] public override string[] Exclude { get { return base.Exclude; } set { base.Exclude = value; } } /// /// Gets or sets the recurse switch. /// [Parameter] [Alias("s", "r")] public SwitchParameter Recurse { get { return _recurse; } set { _recurse = value; } } /// /// Gets or sets max depth of recursion; automatically sets Recurse parameter; /// Value '0' will show only contents of container specified by -Path (same result as running 'Get-ChildItem' without '-Recurse'); /// Value '1' will show 1 level deep, etc...; /// Default is uint.MaxValue - it performs full recursion (this parameter has no effect). /// [Parameter] public uint Depth { get { return _depth; } set { _depth = value; this.Recurse = true; // Bug 2391925 - Get-ChildItem -Depth should auto-set -Recurse } } /// /// Gets or sets the force property. /// /// /// Gives the provider guidance on how vigorous it should be about performing /// the operation. If true, the provider should do everything possible to perform /// the operation. If false, the provider should attempt the operation but allow /// even simple errors to terminate the operation. /// For example, if the user tries to copy a file to a path that already exists and /// the destination is read-only, if force is true, the provider should copy over /// the existing read-only file. If force is false, the provider should write an error. /// [Parameter] public override SwitchParameter Force { get { return base.Force; } set { base.Force = value; } } /// /// Gets or sets the names switch. /// [Parameter] public SwitchParameter Name { get { return _childNames; } set { _childNames = value; } } /// /// A virtual method for retrieving the dynamic parameters for a cmdlet. Derived cmdlets /// that require dynamic parameters should override this method and return the /// dynamic parameter object. /// /// /// The context under which the command is running. /// /// /// An object representing the dynamic parameters for the cmdlet or null if there /// are none. /// internal override object GetDynamicParameters(CmdletProviderContext context) { object result = null; string path = string.Empty; if (_paths != null && _paths.Length > 0) { path = _paths[0]; } else { path = "."; } switch (ParameterSetName) { case childrenSet: case literalChildrenSet: if (Name) { result = InvokeProvider.ChildItem.GetChildNamesDynamicParameters(path, context); } else { result = InvokeProvider.ChildItem.GetChildItemsDynamicParameters(path, Recurse, context); } break; default: result = InvokeProvider.ChildItem.GetChildItemsDynamicParameters(path, Recurse, context); break; } return result; } #endregion Command parameters #region command data /// /// The path for the get-location operation. /// private string[] _paths; /// /// Determines if the command should do recursion. /// private bool _recurse; /// /// Limits the depth of recursion; used with Recurse parameter; /// Value '0' will show only contents of container specified by -Path (same result as running 'Get-ChildItem' without '-Recurse'); /// Value '1' will show 1 level deep, etc...; /// Default is uint.MaxValue - it performs full recursion (this parameter has no effect). /// private uint _depth = uint.MaxValue; /// /// The flag that specifies whether to retrieve the child names or the child items. /// private bool _childNames = false; #endregion command data #region command code /// /// The main execution method for the get-childitem command. /// protected override void ProcessRecord() { CmdletProviderContext currentContext = CmdletProviderContext; if (_paths == null || _paths.Length == 0) { _paths = new string[] { string.Empty }; } foreach (string path in _paths) { switch (ParameterSetName) { case childrenSet: case literalChildrenSet: try { if (Name) { // Get the names of the child items using the static namespace method. // The child names should be written directly to the pipeline using the // context.WriteObject method. InvokeProvider.ChildItem.GetNames(path, ReturnContainers.ReturnMatchingContainers, Recurse, Depth, currentContext); } else { // Get the children using the static namespace method. // The children should be written directly to the pipeline using // the context.WriteObject method. InvokeProvider.ChildItem.Get(path, Recurse, Depth, currentContext); } } catch (PSNotSupportedException notSupported) { WriteError( new ErrorRecord( notSupported.ErrorRecord, notSupported)); continue; } catch (DriveNotFoundException driveNotFound) { WriteError( new ErrorRecord( driveNotFound.ErrorRecord, driveNotFound)); continue; } catch (ProviderNotFoundException providerNotFound) { WriteError( new ErrorRecord( providerNotFound.ErrorRecord, providerNotFound)); continue; } catch (ItemNotFoundException pathNotFound) { WriteError( new ErrorRecord( pathNotFound.ErrorRecord, pathNotFound)); continue; } break; default: Dbg.Diagnostics.Assert( false, "Only one of the specified parameter sets should be called."); break; } } } #endregion command code } }