以下は、ftp を使用してファイルをアップロードする方法のコードです。私の質問は、try で例外が発生した場合はどうなるかということです。ftp 接続は catch で自動的に閉じられますか? 「使用」を使用する方が良いですか?
ありがとうございました
Try
'connect to ftp server
Dim ftp As New FTPConnection
ftp.ServerAddress = "ftp.example.com"
ftp.UserName = "example_user"
ftp.Password = "example_pass"
ftp.Connect()
ftp.TransferType = FTPTransferType.BINARY
'upload a file
ftp.UploadFile("s:\test.txt", "test.txt")
'close the connection
ftp.Close()
Catch ex As Exception
MessageBox.Show(ex.Message.ToString())
End Try