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
{{ message }}
This repository was archived by the owner on Dec 6, 2024. It is now read-only.
* Return a list of all of the files within a bucket with the specified ID,
684
+
* by default a maximum of 100 files are returned with this request.
685
+
*
686
+
* @param bucketId the id of the bucket to list
687
+
* @param startFileName the start file name, or if null, this will be the first file
688
+
* @param maxFileCount (optional) if null, the default is 100, the maximum number to be returned is 1000
689
+
* @param prefix Files returned will be limited to those with the given prefix. Defaults to the empty string, which matches all files.
690
+
* @param delimiter Files returned will be limited to those within the top folder, or any one subfolder. Defaults to NULL. Folder names will also be returned. The delimiter character will be used to "break" file names into folders.
691
+
* @return the list of files response
692
+
*
693
+
* @throws B2ApiException if there was an error with the call,
694
+
* @throws IOException if there was an error communicating with the API service
* List the file versions in a bucket starting at a specific file name and file id
749
+
*
750
+
* @param bucketId the id of the bucket
751
+
* @param startFileName the file name to start with
752
+
* @param startFileId the id of the file to start with
753
+
* @param maxFileCount the maximum number of files to return (must be less than or equal to 1000, else an error is thrown)
754
+
* @param prefix Files returned will be limited to those with the given prefix. Defaults to the empty string, which matches all files.
755
+
* @param delimiter Files returned will be limited to those within the top folder, or any one subfolder. Defaults to NULL. Folder names will also be returned. The delimiter character will be used to "break" file names into folders.
756
+
*
757
+
* @return the list files response
758
+
*
759
+
* @throws B2ApiException if there was an error with the call
760
+
* @throws IOException if there was an error communicating with the API service
0 commit comments