zoukankan      html  css  js  c++  java
  • Get-ChildItem参数之 -Exclude,Filter,Recurse应用

    1 $p = "D:PSScript"
    2 
    3 gci $p -Exclude "UpdateLog" #排除子目录"UpdateLog",但是后面不能接着使用 -Recurse参数,否则-Exclude参数失效
    4 gci $p -Exclude "说明.txt" -Recurse #排除文件"说明.txt",可以一起使用 -Recurse参数
    5 
    6 gci $p -filter "UpdateLog" #只遍历子目录 "UpdateLog" 
    7 gci $p -filter "*server*" #遍历包含关键字 server 的目录
    8 gci $p -filter "*server*" -Recurse  # -Recurse参数不生效
    1  #删除目录下所有文件,保留目录结构,其中除去UpdateLog子目录,除去“说明.txt”文件
    2 gci $p -Exclude "UpdateLog" |% { gci $_.FullName -Exclude "说明.txt" -Recurse | ? {!$_.PSIsContainer } | Remove-Item -Force }
  • 相关阅读:
    01-HTML控件
    08-多线程
    07-Log日志
    06-File-文件
    05-函数式编程
    04-异常使用处理
    03-常用包模块
    02-包
    Java NIO(六) Selector
    Java NIO(四) Scatter/Gather
  • 原文地址:https://www.cnblogs.com/dreamer-fish/p/3993124.html
Copyright © 2011-2022 走看看