我有一個每兩小時運行一次的腳本。它將Helix數據庫集合及其日誌文件複製到本地備份文件夾。我首先保存,所以它們同步,然後複製它們。它已經開始間歇性地失敗,說日誌文件正在使用中。它在Finder中變暗。AppleScript複製後使用的文件
這裏的腳本:
tell application "Finder"
set dupArray to {}
--move the collection into the array
set CollectionName to name of collectionFile
copy collectionFile to the end of dupArray
--move the logfile into the array
set theCollectionLogfile to ((mainLoc as text) & "Log_" & CollectionName & ".hlog")
if (exists file theCollectionLogfile) then
copy theCollectionLogfile to the end of dupArray
end if
--do the duplicate
duplicate dupArray to backupFolder with replacing
end tell
我怎樣才能得到它與該更換第二次複製?
感謝
萊尼
感謝回答。我昨天出去了......不幸的是,一天之後,這個文件仍然在使用中。它不會釋放任何東西 –
我認爲你的意思是「複製」,我寫了「複製」;這是打算在最後一個重複部分之前。 – CRGreen