I'm trying to rename my file toto.html by removing its extension using gsutils. My folder/files are organized this way:
toto ----|
|
|--file1.html
|
|--file2.txt
|
|-- ...
|
toto.html
So I used the command :
gsutil mv gs://my_bucket/toto.html gs://my_bucket/toto
the problem is by doing so, the file is moved inside the folder that has the same name as the directory. ( which is normal )
How can I rename my file without having this issue?
thanks in advance.