Hello everyone

I'm facing an issue
I'm using this code to copy all the files
Code:
        Try
            My.Computer.FileSystem.CopyDirectory(VBFrom_Path, VBTo_Path, True)
        Catch ex As Exception
            MsgBox("Unable to make the copy")
        End Try
The problem is when in the VBTo_Path put a folder on a server without having permission in this folder. (Absolutely logical)

Is there any way to give permission thru the program?? I don't want users had permission in a server folder!!!

Thanks and regards