2024-02-07から1日間の記事一覧

vb.net stringの末端が"/"じゃないなら "/"つける

Dim ftpURL As String = "ftp://example.com/folder" If Not ftpURL.EndsWith("/") Then ftpURL += "/" End If Console.WriteLine(ftpURL)