Dim objFso, strSourcePath, strDestPath
strSourcePath = WScript.Arguments.item(0)
strDestPath = WScript.Arguments.item(1)
Set objFso = CreateObject("Scripting.FileSystemObject")
If objFso.FileExists(strSourcePath) then
objFso.MoveFile strSourcePath, strDestPath
End If
Set objFso = Nothing
'RPA 종합' 카테고리의 다른 글
RPA의 개념 (2) | 2020.10.13 |
---|---|
RPA 서비스의 변화 방향[2020.07.08] (2) | 2020.06.16 |
RPA 시장의 두드러지는 흐름 (9) | 2020.04.06 |
RPA용 SAP GUI 세팅에 관한 설명 (0) | 2019.11.18 |
간단한 파일확장자 체크 및 PDF 변환 코드 (0) | 2019.11.13 |