🚀 The feature
Downloading data twice with download=True set to Places365() gets the error below:
from torchvision import datasets
train_data = datasets.Places365(
    root="data",
    split="train-standard",
    download=True # Here
)
RuntimeError: The directory data\data_large_standard already exists. If you want to re-download or re-extract the images, delete the directory.
Motivation, pitch
So, downloading data twice with download=True set to Places365() should not get the error like when downloading data twice with download=True set to MNIST() doesn't get error as shown below:
from torchvision import datasets
train_data = datasets.MNIST(
    root="data",
    train=True,
    download=True # Here
) # No errorAlternatives
No response
Additional context
No response