Amazon S3 Delimiter and Prefix
Amazon S3 is an inexpensive online file storage service, and there is the JavaScript SDK to use. There are things puzzling me when using the SDK were:
- How to use parameters
Delimiter
andPrefix
? - What is the difference between
CommonPrefixes
andContents
? - How to create a folder/directory with JavaScript SDK?
To retrieve objects in an Amazon S3 bucket, the operation is listObjects
. The listObjects
does not return the content of the object, but the key and meta data such as size and owner of the object.
To make a call to get a list of objects in a bucket:
|
|
Where the params
can be configured with the following parameters:
- Bucket
- Delimiter
- EncodingType
- Marker
- MaxKeys
- Prefix
But what are Delimiter
and Prefix
? And how to use them?
Let’s start by creating some objects in an Amazon S3 bucket similar to the following file structure. This can be easily done by using the AWS Console.
|
|
In Amazon S3, the objects are:
|
|
One thing to keep in mind is that Amazon S3 is not a file system. There is not really the concept of file and directory/folder. From the console, it might look like there are 2 directories and 3 files. But they are all objects. And objects are listed alphabetically by their keys.
To make it a little bit more clear, let’s invoke the listObjects
method. Since the operation has only Bucket
parameter is required:
|
|
The response data
contains in the callback function:
|
|
If this is a file structure, you might expect:
|
|
But it is not, because a bucket does not work like a folder or a directory, where the immediate files inside the directory is shown. The objects inside the bucket are laid out flat and alphabetically.
In UNIX, a directory is a file, but in Amazon S3, everything is an object, and can be identified by key.
So, how to make Amazon S3 behave more like a folder or a directory? Or how to just list the content of first level right inside the bucket?
In order to make it work like directory you have to use Delimiter
and Prefix
. Delimiter
is what you use to group keys. It does have to be a single character, it can be a string of characters. And Prefix
limits the response to keys that begin with the specified prefix.
Delimiter
Let’s start by adding the following delimiter:
|
|
You will get something more like a listing of a directory:
|
|
There are a directory directory/
and a file file
. What happened was that the following objects except file
are grouped by the delimiter /
:
|
|
So, result in:
|
|
This feels more like a listing of a directory or folder. But if we change Delimiter
to i
, then, you get no Contents
and just the prefixes:
|
|
All keys can be grouped into two prefixes: di
and fi
. Therefore, Amazon S3 is not a file system, but might act like one if using the right parameters.
As I have mentioned that Delimiter
does not need to be a single character:
|
|
If recall the bucket structure:
|
|
Both directory/directory/
and directory/directory/file
are grouped into a common prefix: directory/directory
, due to the common grouping string /directory
.
Let’s try another one with Delimiter: 'directory'
:
|
|
Okay, one more. Let’s try ry/fi
:
|
|
So, remember that Delimiter
is just providing a grouping functionality for keys. If you want it to behave like a file system, use Delimiter: '/'
.
Prefix
Prefix
is much easier to understand, it is a filter that limits keys to be prefixed by the one specified.
With the same structure:
|
|
Let’s set the Prefix
parameter to directory
:
|
|
How about directory/
:
|
|
Both directory
and directory/
prefixes are the same.
If we try something slightly different, Prefix: 'directory/d'
:
|
|
Putting all together with both Delimiter: 'directory'
and Prefix: 'directory'
:
|
|
First, list the keys prefixed by directory
:
|
|
Group them by the delimiter directory
with prefix directory
:
|
|
The result Contents
are:
|
|
and CommonPrefixes
are:
|
|
Maybe changing Delimiter
to i
could give a better perspective:
|
|
as:
|
|
One advantage of using Amazon S3 over listing a directory is that you don’t need to concern about nested directories, everything is being flattened. So, you can loop it through just by specifying the Prefix
property.
Directory/Folder
If you’re using the Amazon AWS console to “Create Folder”, you can create a directory/folder and upload a file to inside the directory/folder. In effect, you are actually creating two objects with the following keys:
|
|
If you use the following command to upload a file, the directory is not created:
|
|
Because, Amazon S3 is not a file system, but a key/value store. If you use listObjects
method, you will just see one object. That is the same reason that you cannot copy a local directory:
|
|
But we can use the JavaScript SDK to create a directory/folder:
|
|
Note that you must use directory/
with trailing slash instead the one without. Otherwise, it is just a regular file not a directory.