We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am able to retrieve contents of subfolder using $s3->getBucket("pictures","0"); where "0" is the subfolder.
Is there away to request folders of bucket "pictures" without getting the list of files
--- update
i add this to the code to get folder list
public static function parseFolderReturn($rfiles){ $a = array(); foreach($rfiles as $p){ if(isset($p["prefix"])){ array_push($a,str_replace("/","",$p["prefix"]) ); } } return $a; } public static function getFolders($bucket, $prefix = null, $marker = null, $maxKeys = null, $delimiter = "/", $returnCommonPrefixes = true) { $r = self::getBucket($bucket,$prefix, $marker, $maxKeys, $delimiter, $returnCommonPrefixes); return self::parseFolderReturn($r); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am able to retrieve contents of subfolder
using $s3->getBucket("pictures","0");
where "0" is the subfolder.
Is there away to request folders of bucket "pictures" without getting the list of files
--- update
i add this to the code to get folder list
The text was updated successfully, but these errors were encountered: