Rclone move doesn't delete empty folders

Hi
This is a bit basic, after I run rclone move, the files have uploaded and been removed, but the original folders aren’t. Is there anyway to make that happen?
Thanks

Just found this, I guess it also applies to moves?

Yes that is the problem.

However you can use rclone rmdirs to delete any empty directories which is a pretty good work-around.

Quick question, if I use rclone rmdirs, and there’s an empty folder within my target folder, it will delete the child.
If for some reason the target folder is empty, it deletes the parent folder itself, which feels odd and wrong to me?

Am I doing it wrong? Is there a way of not doing anything if there aren’t any empty folders left to delete?
Thanks

rclone rmdirs should delete the target directory and any directories underneath the target directory provided there are no files anywhere.

$ cd /tmp/
$ mkdir -p one/two/three/four
$ tree one
one
└── two
    └── three
        └── four

3 directories, 0 files
$ rclone rmdirs --dry-run one
2017/01/27 20:42:17 two/three/four: Not deleting as dry run is set
2017/01/27 20:42:17 two/three: Not deleting as dry run is set
2017/01/27 20:42:17 two: Not deleting as dry run is set
2017/01/27 20:42:17 Local file system at /tmp/one: Not deleting as dry run is set
$ rclone rmdirs one
$ tree one
one [error opening dir]

0 directories, 0 files