#按照日期创建文件放置log文件

    $usedate = "{0:yyyy-MM-dd}" -f (get-date)   #获取当前系统日期格式化为yy-mm-dd格式
    
    $filepath = New-Item -name $usedate -ItemType directory  #使用输出的日期创建文件夹如果创建文件,将directory更改为file
    
    Get-ChildItem *.log | Move-Item -Destination $filepath  #启动文件到此文件夹