Re: How to creating directories on remote sftp server by using com library
There's no way to create a recursive remote path in one call.
If you do not even know what path components exists in advance, you have to iterate the components one by one, testing their existence (
If you do not even know what path components exists in advance, you have to iterate the components one by one, testing their existence (
.FileExists
) and create if they do not.