标签: powershell powershell-v2.0 powershell-v3.0 powershell-v4.0
我试图找到最简单的方法将sqlite文件复制到现有的.zip文件夹中。我们每天下午5点运行一个作业,创建一个sqlite文件,并且不得不每天将其手动复制到.zip中几个月。如果可以实现自动化,那就太好了。这样的东西行吗?
$file = "\\Server\c$\Downloads\Test\test.sqlite" $dest = "\\Server\c$\Downloads\Test\test.zip" Copy-Item $file -Destination $dest -Force