windows 从PowerShell创建并打开Adobe Illustrator文档

ddhy6vgd  于 2023-01-21  发布在  Windows
关注(0)|答案(1)|浏览(92)

我正在尝试从PowerShell创建Illustrator文件。我可以创建新的. ai文件,但Illustrator无法打开它。
下面是我的尝试:

PS C:\Users\my.name> Invoke-Item "C:\Program Files\Adobe\Adobe Illustrator 2023\Adobe Illustrator 2023.lnk"
PS C:\Users\my.name> New-Item -Path "C:\Users\my.name\Documents\scripting\testfile.ai"

当我转到文件位置时,该文件以. ai文档的形式存在,但当我尝试打开它时收到此错误:
Can't open the illustration. The file may be read only, or the file is in use by another application, or you do not have the required permissions. Please save the document with a different name, or in a different folder or directory.
有人知道为什么会这样吗?谢谢!

3htmauhk

3htmauhk1#

目前你的第一个命令只是启动illustrator,没有别的,第二个命令只是创建一个空文件。
您可能希望在某处手动创建一个新的.ai文件作为模板,然后根据需要复制它:

Copy-Item "C:\folder\template.ai" "C:\folder\testfile.ai"

一旦你有了一个新的测试文件,你就可以像这样在illustrator中打开它,只要你的ai文件默认程序是正确的:

Start-Process "C:\folder\testfile.ai"

相关问题