SUBHASHRIQAZ
Results
1
issues of
SUBHASHRIQAZ
Using below logic for uploading large files. target_url = "Shared Documents/testing" target_folder = ctx.web.ensure_folder_path(target_url) size_chunk = 1000000 local_path = "../../../tests/data/big_buck_bunny.mp4" file_size = os.path.getsize(local_path) def print_upload_progress(offset): print("Uploaded '{0}' bytes from '{1}'...[{2}%]".format(offset,...
bug