0

我知道必须有一个简单的答案,但我怎样才能同时运行我的两个命令?我可以运行一行来创建新目录并为其命名,然后将项目从一个文件夹复制到另一个文件夹。但是如何创建文件夹并将文件复制到创建的文件夹中?

    #Creates new directory and names it current date and time.
    New-Item C:\ -type directory -Name ("$(Get-Date -f ddMMyyyy_hhmm)")

    #Copies Data from one directory to another, works good.
    Copy-Item C:\test\* C:\test2

谢谢你的帮助。

4

1 回答 1

0

您可以使用 New-Item 返回的对象的 FullName 属性作为另一个命令的目标。IE

Copy-Item C:\somefolder\* -Destination (New-Item -type Directory -name (Get-Date -f ddMMyyyy_hhmmss)).FullName
于 2013-10-22T18:50:53.683 回答