1---
2title: "rclone lsl"
3description: "List the objects in path with modification time, size and path."
4slug: rclone_lsl
5url: /commands/rclone_lsl/
6# autogenerated - DO NOT EDIT, instead edit the source code in cmd/lsl/ and as part of making a release run "make commanddocs"
7---
8# rclone lsl
9
10List the objects in path with modification time, size and path.
11
12## Synopsis
13
14
15Lists the objects in the source path to standard output in a human
16readable format with modification time, size and path. Recurses by default.
17
18Eg
19
20    $ rclone lsl swift:bucket
21        60295 2016-06-25 18:55:41.062626927 bevajer5jef
22        90613 2016-06-25 18:55:43.302607074 canole
23        94467 2016-06-25 18:55:43.046609333 diwogej7
24        37600 2016-06-25 18:55:40.814629136 fubuwic
25
26
27Any of the filtering options can be applied to this command.
28
29There are several related list commands
30
31  * `ls` to list size and path of objects only
32  * `lsl` to list modification time, size and path of objects only
33  * `lsd` to list directories only
34  * `lsf` to list objects and directories in easy to parse format
35  * `lsjson` to list objects and directories in JSON format
36
37`ls`,`lsl`,`lsd` are designed to be human readable.
38`lsf` is designed to be human and machine readable.
39`lsjson` is designed to be machine readable.
40
41Note that `ls` and `lsl` recurse by default - use `--max-depth 1` to stop the recursion.
42
43The other list commands `lsd`,`lsf`,`lsjson` do not recurse by default - use `-R` to make them recurse.
44
45Listing a non existent directory will produce an error except for
46remotes which can't have empty directories (e.g. s3, swift, or gcs -
47the bucket based remotes).
48
49
50```
51rclone lsl remote:path [flags]
52```
53
54## Options
55
56```
57  -h, --help   help for lsl
58```
59
60See the [global flags page](/flags/) for global options not listed here.
61
62## SEE ALSO
63
64* [rclone](/commands/rclone/)	 - Show help for rclone commands, flags and backends.
65
66