我的代码在我通过f8时起作用,而在我f5时不起作用

时间:2019-07-11 11:26:52

标签: excel vba png

下面的代码可将带有标题的分组图表图片移动到png文件中。由于某些原因,当我使用f8时,它有时会随机工作,但有时会通过f8创建一个空白png文件。如果我按f5键,则始终是blank.png或说权限被拒绝。

你能帮忙吗?

foreach ($folder in (Get-ChildItem 'C:\Users\S7051895\Desktop\Customer Service\Customer' -Directory))
{
        $files = Get-ChildItem $folder.FullName
        $newfolder = new-item -ItemType directory -Path ($folder.fullname+"\Quotes")
        $files | Move-Item -Destination $newfolder.FullName
}

0 个答案:

没有答案