如何使用applescript将Microsoft Word文档保存在特定的Finder文件夹中?

时间:2017-06-13 16:42:04

标签: applescript

如何使用applescript将文件保存到特定文件夹中?

我有一个创建文档的脚本,但我还没想出如何将文件保存到我想要的位置。这是相关的(我相信)代码:

tell application "Microsoft Word"
    activate
    tell active document
        save as file name SaveName
    end tell
end tell

使用此功能,文件将保存到用户的Documents文件夹中。我觉得必须有一种简单的方法告诉它将它保存在一个特定的位置,但到目前为止我搜索和尝试的所有内容都没有得出答案。

1 个答案:

答案 0 :(得分:0)

如果要将文件保存到桌面文件夹

,则需要传递完整路径
<form [formGroup]="myForm" novalidate (ngSubmit)="save()"   >

<ion-list>

    <ion-item>
        <ion-label>Username</ion-label>
        <ion-input type="text" value="" formControlName="myName" ></ion-input>
    </ion-item>


</ion-list>

<ion-list formGroupName="role">
    <ion-item>
        <ion-label>Programmer</ion-label>
        <ion-checkbox color="dark" checked="true" formControlName="prog" ></ion-checkbox>
    </ion-item>

    <ion-item>
        <ion-label>Manager</ion-label>
        <ion-checkbox color="dark" checked="false" formControlName="mgr"></ion-checkbox>
    </ion-item>

    <ion-item>
        <ion-label>Designer</ion-label>
        <ion-checkbox color="dark" checked="false" formControlName="designer"></ion-checkbox>
    </ion-item>

</ion-list> 

<button type="submit" 
         [disabled] = "!myForm.valid" 
         [hidden]= "isProcessing"
         ion-button full style="margin-top:0px;" >Submit</button>
</form>

set desktopFolder to path to desktop as text tell application "Microsoft Word" activate tell active document save as file name (desktopFolder & SaveName) end tell end tell 相当于path to desktop as text