You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A file put with datasets.put of a single file needs explicit filename in the path, but should be able to use the existing file name for smarter uploads.
Eg. a call like
dataset.put("/project/data.csv", "/somefolder/")
results in /somefolder/ being created (if it doesn't exists), but no file uploaded there. I think if done smartly that above should be equivalent to explicitly writing
which is just getting the current file name and adding to the end of the path, if not provided.
If that auto filename is not desirable for some reason then the upload should at least error out, otherwise confusing that things succeed and nothing is copied.
The text was updated successfully, but these errors were encountered:
A file put with
datasets.put
of a single file needs explicit filename in the path, but should be able to use the existing file name for smarter uploads.Eg. a call like
results in
/somefolder/
being created (if it doesn't exists), but no file uploaded there. I think if done smartly that above should be equivalent to explicitly writingwhich is just getting the current file name and adding to the end of the path, if not provided.
If that auto filename is not desirable for some reason then the upload should at least error out, otherwise confusing that things succeed and nothing is copied.
The text was updated successfully, but these errors were encountered: