LibreOffice 24.8 Help
๊ธฐ์กด ํ์ผ ๋๋ ๋๋ ํ ๋ฆฌ์ ์ด๋ฆ์ ๋ฐ๊ฟ๋๋ค.
Name OldName As String As NewName As String
OldName, NewName: ๊ฒฝ๋ก๋ฅผ ํฌํจํ ํ์ผ ์ด๋ฆ์ ์ง์ ํ๋ ์์์ ๋ฌธ์์ด ์์ ๋๋ค. URL ํ๊ธฐ๋ฒ์ ์ฌ์ฉํ ์๋ ์์ต๋๋ค.
Sub ExampleReName
On Error GoTo Error
FileCopy "c:\autoexec.bat", "c:\temp\autoexec.sav"
Name "c:\temp\autoexec.sav" As "c:\temp\autoexec.bat"
End
Error:
If err = 58 Then
msgbox "File already exists"
End If
End
End Sub