How to recursively copy a directory through gio

0

I want to copy some directories off a remote SMB server. I tried to do it with gio copy, but it replies, that it cannot copy directiories recursively.

How can one make it so it will?

Cysioland

Posted 2017-10-19T18:36:41.623

Reputation: 183

Answers

0

There isn't a way to do true recursion with gio copy, but you can come close by doing

$ gio copy <directory>/* smb://server/sharename/path/to/existing/directory

Jesse Brandeburg

Posted 2017-10-19T18:36:41.623

Reputation: 1