Richard's profileRichard Siddaway's BlogPhotosBlogLists Tools Help

Blog


    March 28

    Test folders

    I needed some test folders in a hurry.  They didn’t have to have anything in them – just exist as a set of folders for me to work with.

    From the PowerShell prompt

    1..20 | foreach {md "test$_"}

    How easy is that.  Twenty folders in the time it would take me to open Windows explorer. 

    Use the range operator to define a range of suffixes and pipe into foreach.  The md command creates the folder using string substitution to append the suffix.

    If you want to be slightly more formal about things then the Sunday best version of the command is


    21..40 | foreach { New-Item -Name "test$_" -ItemType directory }

    The range operator is a very useful tool that probably doesn’t get as much exposure as it should

     

    Technorati Tags:

    Comments

    Please wait...
    Sorry, the comment you entered is too long. Please shorten it.
    You didn't enter anything. Please try again.
    Sorry, we can't add your comment right now. Please try again later.
    To add a comment, you need permission from your parent. Ask for permission
    Your parent has turned off comments.
    Sorry, we can't delete your comment right now. Please try again later.
    You've exceeded the maximum number of comments that can be left in one day. Please try again in 24 hours.
    Your account has had the ability to leave comments disabled because our systems indicate that you may be spamming other users. If you believe that your account has been disabled in error please contact Windows Live support.
    Complete the security check below to finish leaving your comment.
    The characters you type in the security check must match the characters in the picture or audio.

    To add a comment, sign in with your Windows Live ID (if you use Hotmail, Messenger, or Xbox LIVE, you have a Windows Live ID). Sign in


    Don't have a Windows Live ID? Sign up

    Trackbacks

    The trackback URL for this entry is:
    http://richardsiddaway.spaces.live.com/blog/cns!43CFA46A74CF3E96!2191.trak
    Weblogs that reference this entry
    • None