PowerShell 使用当前日期创建文件夹
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PowerShell 使用当前日期创建文件夹相关的知识,希望对你有一定的参考价值。
$usedate = "{0:yyyy-MM-dd}" -f (Get-Date) #获取当前计算机日期,并存储为yy-mm-dd格式 $newfile = Get-ChildItem -name * -include $usedate if ( $newfile -eq $null ) { New-Item -Name $usedate -ItemType Directory #如果当前目录下没有此文件则创建 } else { write-host "$newfile 已经存在" }
本文出自 “汜水流年_” 博客,请务必保留此出处http://timefiles.blog.51cto.com/8475652/1793886
以上是关于PowerShell 使用当前日期创建文件夹的主要内容,如果未能解决你的问题,请参考以下文章
我们如何使用Windows Powershell脚本替换文本文件中的日期?