@@ -47,7 +47,7 @@ endpoint for filesystem operations::
47
47
string, an array or any object implementing :phpclass: `Traversable ` as
48
48
the target argument.
49
49
50
- Mkdir
50
+ mkdir
51
51
~~~~~
52
52
53
53
:method: `Symfony\\ Component\\ Filesystem\\ Filesystem::mkdir ` creates a directory.
@@ -61,7 +61,7 @@ On posix filesystems, directories are created with a default mode value
61
61
You can pass an array or any :phpclass: `Traversable ` object as the first
62
62
argument.
63
63
64
- Exists
64
+ exists
65
65
~~~~~~
66
66
67
67
:method: `Symfony\\ Component\\ Filesystem\\ Filesystem::exists ` checks for the
@@ -78,7 +78,7 @@ presence of all files or directories and returns ``false`` if a file is missing:
78
78
You can pass an array or any :phpclass: `Traversable ` object as the first
79
79
argument.
80
80
81
- Copy
81
+ copy
82
82
~~~~
83
83
84
84
:method: `Symfony\\ Component\\ Filesystem\\ Filesystem::copy ` is used to copy
@@ -92,7 +92,7 @@ the third boolean argument::
92
92
// image.jpg will be overridden
93
93
$fs->copy('image-ICC.jpg', 'image.jpg', true);
94
94
95
- Touch
95
+ touch
96
96
~~~~~
97
97
98
98
:method: `Symfony\\ Component\\ Filesystem\\ Filesystem::touch ` sets access and
@@ -111,7 +111,7 @@ your own with the second argument. The third argument is the access time::
111
111
You can pass an array or any :phpclass: `Traversable ` object as the first
112
112
argument.
113
113
114
- Chown
114
+ chown
115
115
~~~~~
116
116
117
117
:method: `Symfony\\ Component\\ Filesystem\\ Filesystem::chown ` is used to change
@@ -127,7 +127,7 @@ the owner of a file. The third argument is a boolean recursive option::
127
127
You can pass an array or any :phpclass: `Traversable ` object as the first
128
128
argument.
129
129
130
- Chgrp
130
+ chgrp
131
131
~~~~~
132
132
133
133
:method: `Symfony\\ Component\\ Filesystem\\ Filesystem::chgrp ` is used to change
@@ -143,7 +143,7 @@ the group of a file. The third argument is a boolean recursive option::
143
143
You can pass an array or any :phpclass: `Traversable ` object as the first
144
144
argument.
145
145
146
- Chmod
146
+ chmod
147
147
~~~~~
148
148
149
149
:method: `Symfony\\ Component\\ Filesystem\\ Filesystem::chmod ` is used to change
@@ -159,7 +159,7 @@ the mode of a file. The fourth argument is a boolean recursive option::
159
159
You can pass an array or any :phpclass: `Traversable ` object as the first
160
160
argument.
161
161
162
- Remove
162
+ remove
163
163
~~~~~~
164
164
165
165
:method: `Symfony\\ Component\\ Filesystem\\ Filesystem::remove ` is used to remove
@@ -172,7 +172,7 @@ files, symlinks, directories easily::
172
172
You can pass an array or any :phpclass: `Traversable ` object as the first
173
173
argument.
174
174
175
- Rename
175
+ rename
176
176
~~~~~~
177
177
178
178
:method: `Symfony\\ Component\\ Filesystem\\ Filesystem::rename ` is used to rename
0 commit comments