Events01 – minta

Ez a példa bemutatja, hogyan hozhat létre olyan parancsmagot, amely lehetővé teszi a felhasználó számára, hogy regisztráljon a System.IO.FileSystemWatcher által létrehozott eseményekre. Ezzel a parancsmaggal a felhasználók regisztrálhatnak egy műveletet a végrehajtáshoz, amikor egy fájlt hoznak létre egy adott könyvtárban. Ez a minta a Microsoft.PowerShell.Commands.ObjectEventRegistrationBase alaposztályból származik.

A minta összeállítása a Visual Studio.

  1. A Windows PowerShell 2.0 SDK telepítése után keresse meg az Events01 mappát. Az alapértelmezett hely C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0\Samples\sysmgmt\WindowsPowerShell\csharp\Events01 a .

  2. Kattintson duplán a megoldásfájl (.sln) ikonjára. Ez megnyitja a mintaprojektet a Microsoft Visual Studio.

  3. A Build (Build) menüben válassza a Build Solution (Megoldás összeállítása) lehetőséget. A minta könyvtára az alapértelmezett vagy mappákban lesz \bin \bin\debug felépítve.

A minta futtatása

  1. Hozza létre a következő modulmappát:

    [user]/documents/windowspowershell/modules/events01

  2. Másolja a minta kódtárfájlját a modulmappába.

  3. Indítsa el a Windows PowerShellt.

  4. Futtassa a következő parancsot a parancsmag betöltéséhez a Windows PowerShell:

    import-module events01
    
  5. A Register-FileSystemEvent parancsmag használatával regisztrálhat egy műveletet, amely üzenetet ír, amikor létrejön egy fájl a TEMP könyvtárban.

    Register-FileSystemEvent $env:temp Created -filter "*.txt" -action { Write-Host "A file was created in the TEMP directory" }
    
  6. Hozzon létre egy fájlt a TEMP könyvtárban, és figyelje meg, hogy a művelet végre lesz hajtva (megjelenik az üzenet).

Ez egy mintakimenet, amely az alábbi lépéseket követve eredményt ad.

Id              Name            State      HasMoreData     Location             Command
--              ----            -----      -----------     --------             -------
1               26932870-d3b... NotStarted False                                 Write-Host "A f...

Set-Content $env:temp\test.txt "This is a test file"
A file was created in the TEMP directory

Követelmények

Ehhez a mintához Windows PowerShell 2.0 szükséges.

Útmutató ehhez:

Ez a minta a következőket mutatja be.

Parancsmag írása az eseményregisztrációhoz

A parancsmag a Microsoft.PowerShell.Commands.ObjectEventRegistrationBase osztályból származik, amely a parancsmagok közös paramétereinek Register-*Event támogatását biztosítja. A Microsoft.PowerShell.Commands.ObjectEventRegistrationBase parancsmagok csak a saját paramétereiket kell meghatározniuk, és felül kell bírálni a és az absztrakt GetSourceObject GetSourceObjectEventName metódusokat.

Példa

Ez a minta bemutatja, hogyan regisztrálhat a System.IO.FileSystemWatcheráltal által felvetett eseményekre.

namespace Sample
{
    using System;
    using System.IO;
    using System.Management.Automation;
    using System.Management.Automation.Runspaces;
    using Microsoft.PowerShell.Commands;

    [Cmdlet(VerbsLifecycle.Register, "FileSystemEvent")]
    public class RegisterObjectEventCommand : ObjectEventRegistrationBase
    {
        /// <summary>The FileSystemWatcher that exposes the events.</summary>
        private FileSystemWatcher fileSystemWatcher = new FileSystemWatcher();

        /// <summary>Name of the event to which the cmdlet registers.</summary>
        private string eventName = null;

        /// <summary>
        /// Gets or sets the path that will be monitored by the FileSystemWatcher.
        /// </summary>
        [Parameter(Mandatory = true, Position = 0)]
        public string Path
        {
            get
            {
                return this.fileSystemWatcher.Path;
            }

            set
            {
                this.fileSystemWatcher.Path = value;
            }
        }

        /// <summary>
        /// Gets or sets the name of the event to which the cmdlet registers.
        /// <para>
        /// Currently System.IO.FileSystemWatcher exposes 6 events: Changed, Created,
        /// Deleted, Disposed, Error, and Renamed. Check the documentation of
        /// FileSystemWatcher for details on each event.
        /// </para>
        /// </summary>
        [Parameter(Mandatory = true, Position = 1)]
        public string EventName
        {
            get
            {
                return this.eventName;
            }

            set
            {
                this.eventName = value;
            }
        }

        /// <summary>
        /// Gets or sets the filter that will be user by the FileSystemWatcher.
        /// </summary>
        [Parameter(Mandatory = false)]
        public string Filter
        {
            get
            {
                return this.fileSystemWatcher.Filter;
            }

            set
            {
                this.fileSystemWatcher.Filter = value;
            }
        }

        /// <summary>
        /// Derived classes must implement this method to return the object that generates
        /// the events to be monitored.
        /// </summary>
        /// <returns> This sample returns an instance of System.IO.FileSystemWatcher</returns>
        protected override object GetSourceObject()
        {
            return this.fileSystemWatcher;
        }

        /// <summary>
        /// Derived classes must implement this method to return the name of the event to
        /// be monitored. This event must be exposed by the input object.
        /// </summary>
        /// <returns> This sample returns the event specified by the user with the -EventName parameter.</returns>
        protected override string GetSourceObjectEventName()
        {
            return this.eventName;
        }
    }
}

Lásd még:

Windows PowerShell-parancsmag írása