フォルダーを新しいディレクトリに移動する簡単な方法があります
Dim firstshare As String = "\\myshare\users\" & frmDeparture.txtUsername.Text
Dim destination As String = "\\secondshare\userarchives$\" & frmDeparture.txtUsername.Text
Try
If Directory.Exists(firstshare) Then
Directory.Move(firstshare, destination)
MsgBox("Folder moved from \\firstshare\users")
End If
Catch ex As Exception
MsgBox("Error finding folder")
End Try
「宛先」を「\path\whatever」のようなパスとして設定すると、これは正常に機能しますが、隠しパス ($ を使用) の場合は機能しません。非表示の共有にプログラムでアクセスするために何か特別なことをしなければなりませんか?