2015-06-06 11:05:21 +02:00
|
|
|
---
|
|
|
|
title: "Bugs"
|
2015-06-06 15:33:08 +02:00
|
|
|
description: "Rclone Bugs and Limitations"
|
2015-06-06 11:05:21 +02:00
|
|
|
date: "2014-06-16"
|
|
|
|
---
|
|
|
|
|
2015-06-06 15:33:08 +02:00
|
|
|
Bugs and Limitations
|
|
|
|
--------------------
|
2015-06-06 11:05:21 +02:00
|
|
|
|
2015-06-06 15:33:08 +02:00
|
|
|
### Empty directories are left behind / not created ##
|
2015-06-06 11:05:21 +02:00
|
|
|
|
2015-06-06 15:33:08 +02:00
|
|
|
With remotes that have a concept of directory, eg Local and Drive,
|
|
|
|
empty directories may be left behind, or not created when one was
|
|
|
|
expected.
|
2015-06-06 11:05:21 +02:00
|
|
|
|
2015-06-06 15:33:08 +02:00
|
|
|
This is because rclone doesn't have a concept of a directory - it only
|
|
|
|
works on objects. Most of the object storage systems can't actually
|
|
|
|
store a directory so there is nowhere for rclone to store anything
|
|
|
|
about directories.
|
|
|
|
|
|
|
|
You can work round this to some extent with the`purge` command which
|
|
|
|
will delete everything under the path, **inluding** empty directories.
|
|
|
|
|
2015-08-17 18:14:05 +02:00
|
|
|
This may be fixed at some point in
|
|
|
|
[Issue #100](https://github.com/ncw/rclone/issues/100)
|
|
|
|
|
2015-06-06 15:33:08 +02:00
|
|
|
### Directory timestamps aren't preserved ##
|
|
|
|
|
|
|
|
For the same reason as the above, rclone doesn't have a concept of a
|
|
|
|
directory - it only works on objects, therefore it can't preserve the
|
|
|
|
timestamps of directories.
|