OS-COPY

複製檔案

COPY 原始檔目標檔案

c:\temp\source-file.txt 複製到 c:\temp\target-file.txt。你需要檢查 OS-ERROR 是否成功。

OS-COPY VALUE("c:\temp\source-file.txt")  VALUE("c:\temp\target-file.txt").
IF OS-ERROR <> 0 THEN DO:
    MESSAGE "An error occured" VIEW-AS ALERT-BOX ERROR.
END.