Windows-powershell / PowerShell-master /src /Microsoft.PowerShell.Commands.Management /commands /management /CopyPropertyCommand.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System.Management.Automation; | |
| namespace Microsoft.PowerShell.Commands | |
| { | |
| /// <summary> | |
| /// A command to copy a property on an item. | |
| /// </summary> | |
| [ | |
| ] | |
| public class CopyItemPropertyCommand : PassThroughItemPropertyCommandBase | |
| { | |
| /// <summary> | |
| /// Gets or sets the path parameter to the command. | |
| /// </summary> | |
| [ | |
| ] | |
| public string[] Path | |
| { | |
| get { return paths; } | |
| set { paths = value; } | |
| } | |
| /// <summary> | |
| /// Gets or sets the literal path parameter to the command. | |
| /// </summary> | |
| [ | |
| ] | |
| [] | |
| public string[] LiteralPath | |
| { | |
| get | |
| { | |
| return paths; | |
| } | |
| set | |
| { | |
| base.SuppressWildcardExpansion = true; | |
| paths = value; | |
| } | |
| } | |
| /// <summary> | |
| /// The name of the property to create on the item. | |
| /// </summary> | |
| [] | |
| [] | |
| public string Name { get; set; } | |
| /// <summary> | |
| /// The path to the destination item to copy the property to. | |
| /// </summary> | |
| [] | |
| public string Destination { get; set; } | |
| /// <summary> | |
| /// 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. | |
| /// </summary> | |
| /// <param name="context"> | |
| /// The context under which the command is running. | |
| /// </param> | |
| /// <returns> | |
| /// An object representing the dynamic parameters for the cmdlet or null if there | |
| /// are none. | |
| /// </returns> | |
| internal override object GetDynamicParameters(CmdletProviderContext context) | |
| { | |
| if (Path != null && Path.Length > 0) | |
| { | |
| return InvokeProvider.Property.CopyPropertyDynamicParameters( | |
| Path[0], | |
| Name, | |
| Destination, | |
| Name, | |
| context); | |
| } | |
| return InvokeProvider.Property.CopyPropertyDynamicParameters( | |
| ".", | |
| Name, | |
| Destination, | |
| Name, | |
| context); | |
| } | |
| /// <summary> | |
| /// Copies the property from one item to another. | |
| /// </summary> | |
| protected override void ProcessRecord() | |
| { | |
| foreach (string path in Path) | |
| { | |
| try | |
| { | |
| InvokeProvider.Property.Copy( | |
| path, | |
| Name, | |
| Destination, | |
| Name, | |
| GetCurrentContext()); | |
| } | |
| 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; | |
| } | |
| } | |
| } | |
| } | |
| } | |