Exemple #1
0
func Mv(db *dropbox.Client, args []string) error {
	from, to := mkabs(args[0]), mkabs(args[1])
	_, e := db.Move(from, to)
	return e
}