megfile 3.1.0.post2__py3-none-any.whl → 3.1.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- docs/conf.py +2 -4
- megfile/__init__.py +394 -203
- megfile/cli.py +258 -238
- megfile/config.py +25 -21
- megfile/errors.py +124 -114
- megfile/fs.py +174 -140
- megfile/fs_path.py +462 -354
- megfile/hdfs.py +133 -101
- megfile/hdfs_path.py +290 -236
- megfile/http.py +15 -14
- megfile/http_path.py +111 -107
- megfile/interfaces.py +70 -65
- megfile/lib/base_prefetch_reader.py +94 -69
- megfile/lib/combine_reader.py +13 -12
- megfile/lib/compare.py +17 -13
- megfile/lib/compat.py +1 -5
- megfile/lib/fnmatch.py +29 -30
- megfile/lib/glob.py +54 -55
- megfile/lib/hdfs_prefetch_reader.py +40 -25
- megfile/lib/hdfs_tools.py +1 -3
- megfile/lib/http_prefetch_reader.py +69 -46
- megfile/lib/joinpath.py +5 -5
- megfile/lib/lazy_handler.py +7 -3
- megfile/lib/s3_buffered_writer.py +61 -52
- megfile/lib/s3_cached_handler.py +14 -13
- megfile/lib/s3_limited_seekable_writer.py +38 -28
- megfile/lib/s3_memory_handler.py +35 -29
- megfile/lib/s3_pipe_handler.py +25 -24
- megfile/lib/s3_prefetch_reader.py +71 -52
- megfile/lib/s3_share_cache_reader.py +37 -24
- megfile/lib/shadow_handler.py +8 -3
- megfile/lib/stdio_handler.py +9 -8
- megfile/lib/url.py +3 -3
- megfile/pathlike.py +259 -228
- megfile/s3.py +220 -153
- megfile/s3_path.py +977 -802
- megfile/sftp.py +190 -156
- megfile/sftp_path.py +540 -450
- megfile/smart.py +397 -330
- megfile/smart_path.py +100 -105
- megfile/stdio.py +10 -9
- megfile/stdio_path.py +32 -35
- megfile/utils/__init__.py +75 -54
- megfile/utils/mutex.py +11 -14
- megfile/version.py +1 -1
- {megfile-3.1.0.post2.dist-info → megfile-3.1.2.dist-info}/METADATA +5 -8
- megfile-3.1.2.dist-info/RECORD +55 -0
- {megfile-3.1.0.post2.dist-info → megfile-3.1.2.dist-info}/WHEEL +1 -1
- scripts/convert_results_to_sarif.py +45 -78
- scripts/generate_file.py +140 -64
- megfile-3.1.0.post2.dist-info/RECORD +0 -55
- {megfile-3.1.0.post2.dist-info → megfile-3.1.2.dist-info}/LICENSE +0 -0
- {megfile-3.1.0.post2.dist-info → megfile-3.1.2.dist-info}/LICENSE.pyre +0 -0
- {megfile-3.1.0.post2.dist-info → megfile-3.1.2.dist-info}/entry_points.txt +0 -0
- {megfile-3.1.0.post2.dist-info → megfile-3.1.2.dist-info}/top_level.txt +0 -0
docs/conf.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Configuration file for the Sphinx documentation builder.
|
|
2
|
-
|
|
2
|
+
|
|
3
3
|
# This file only contains a selection of the most common options. For a full
|
|
4
4
|
# list see the documentation:
|
|
5
5
|
# http://www.sphinx-doc.org/en/master/config
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
# If extensions (or modules to document with autodoc) are in another directory,
|
|
10
10
|
# add these directories to sys.path here. If the directory is relative to the
|
|
11
11
|
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
|
12
|
-
#
|
|
13
12
|
|
|
14
13
|
# -- Project information -----------------------------------------------------
|
|
15
14
|
|
|
@@ -37,7 +36,7 @@ templates_path = ['_templates']
|
|
|
37
36
|
|
|
38
37
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
|
39
38
|
# for a list of supported languages.
|
|
40
|
-
|
|
39
|
+
|
|
41
40
|
# This is also used if you do content translation via gettext catalogs.
|
|
42
41
|
# Usually you set "language" from the command line for these cases.
|
|
43
42
|
language = 'en'
|
|
@@ -51,7 +50,6 @@ exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
|
|
51
50
|
|
|
52
51
|
# The theme to use for HTML and HTML Help pages. See the documentation for
|
|
53
52
|
# a list of builtin themes.
|
|
54
|
-
#
|
|
55
53
|
html_theme = "sphinx_rtd_theme"
|
|
56
54
|
|
|
57
55
|
# Add any paths that contain custom static files (such as style sheets) here,
|
megfile/__init__.py
CHANGED
|
@@ -1,214 +1,405 @@
|
|
|
1
|
-
from megfile.fs import
|
|
1
|
+
from megfile.fs import (
|
|
2
|
+
fs_abspath,
|
|
3
|
+
fs_access,
|
|
4
|
+
fs_cwd,
|
|
5
|
+
fs_exists,
|
|
6
|
+
fs_expanduser,
|
|
7
|
+
fs_getmd5,
|
|
8
|
+
fs_getmtime,
|
|
9
|
+
fs_getsize,
|
|
10
|
+
fs_glob,
|
|
11
|
+
fs_glob_stat,
|
|
12
|
+
fs_home,
|
|
13
|
+
fs_iglob,
|
|
14
|
+
fs_isabs,
|
|
15
|
+
fs_isdir,
|
|
16
|
+
fs_isfile,
|
|
17
|
+
fs_islink,
|
|
18
|
+
fs_ismount,
|
|
19
|
+
fs_listdir,
|
|
20
|
+
fs_load_from,
|
|
21
|
+
fs_lstat,
|
|
22
|
+
fs_makedirs,
|
|
23
|
+
fs_move,
|
|
24
|
+
fs_readlink,
|
|
25
|
+
fs_realpath,
|
|
26
|
+
fs_relpath,
|
|
27
|
+
fs_remove,
|
|
28
|
+
fs_rename,
|
|
29
|
+
fs_resolve,
|
|
30
|
+
fs_save_as,
|
|
31
|
+
fs_scan,
|
|
32
|
+
fs_scan_stat,
|
|
33
|
+
fs_scandir,
|
|
34
|
+
fs_stat,
|
|
35
|
+
fs_symlink,
|
|
36
|
+
fs_sync,
|
|
37
|
+
fs_unlink,
|
|
38
|
+
fs_walk,
|
|
39
|
+
is_fs,
|
|
40
|
+
)
|
|
2
41
|
from megfile.fs_path import FSPath
|
|
3
|
-
from megfile.hdfs import
|
|
42
|
+
from megfile.hdfs import (
|
|
43
|
+
hdfs_exists,
|
|
44
|
+
hdfs_getmd5,
|
|
45
|
+
hdfs_getmtime,
|
|
46
|
+
hdfs_getsize,
|
|
47
|
+
hdfs_glob,
|
|
48
|
+
hdfs_glob_stat,
|
|
49
|
+
hdfs_iglob,
|
|
50
|
+
hdfs_isdir,
|
|
51
|
+
hdfs_isfile,
|
|
52
|
+
hdfs_listdir,
|
|
53
|
+
hdfs_load_from,
|
|
54
|
+
hdfs_makedirs,
|
|
55
|
+
hdfs_move,
|
|
56
|
+
hdfs_open,
|
|
57
|
+
hdfs_remove,
|
|
58
|
+
hdfs_save_as,
|
|
59
|
+
hdfs_scan,
|
|
60
|
+
hdfs_scan_stat,
|
|
61
|
+
hdfs_scandir,
|
|
62
|
+
hdfs_stat,
|
|
63
|
+
hdfs_unlink,
|
|
64
|
+
hdfs_walk,
|
|
65
|
+
is_hdfs,
|
|
66
|
+
)
|
|
4
67
|
from megfile.hdfs_path import HdfsPath
|
|
5
|
-
from megfile.http import
|
|
68
|
+
from megfile.http import (
|
|
69
|
+
http_exists,
|
|
70
|
+
http_getmtime,
|
|
71
|
+
http_getsize,
|
|
72
|
+
http_open,
|
|
73
|
+
http_stat,
|
|
74
|
+
is_http,
|
|
75
|
+
)
|
|
6
76
|
from megfile.http_path import HttpPath, HttpsPath
|
|
7
|
-
from megfile.s3 import
|
|
77
|
+
from megfile.s3 import (
|
|
78
|
+
is_s3,
|
|
79
|
+
s3_access,
|
|
80
|
+
s3_buffered_open,
|
|
81
|
+
s3_cached_open,
|
|
82
|
+
s3_concat,
|
|
83
|
+
s3_copy,
|
|
84
|
+
s3_download,
|
|
85
|
+
s3_exists,
|
|
86
|
+
s3_getmd5,
|
|
87
|
+
s3_getmtime,
|
|
88
|
+
s3_getsize,
|
|
89
|
+
s3_glob,
|
|
90
|
+
s3_glob_stat,
|
|
91
|
+
s3_hasbucket,
|
|
92
|
+
s3_iglob,
|
|
93
|
+
s3_isdir,
|
|
94
|
+
s3_isfile,
|
|
95
|
+
s3_listdir,
|
|
96
|
+
s3_load_content,
|
|
97
|
+
s3_load_from,
|
|
98
|
+
s3_lstat,
|
|
99
|
+
s3_makedirs,
|
|
100
|
+
s3_memory_open,
|
|
101
|
+
s3_move,
|
|
102
|
+
s3_open,
|
|
103
|
+
s3_path_join,
|
|
104
|
+
s3_pipe_open,
|
|
105
|
+
s3_prefetch_open,
|
|
106
|
+
s3_readlink,
|
|
107
|
+
s3_remove,
|
|
108
|
+
s3_rename,
|
|
109
|
+
s3_save_as,
|
|
110
|
+
s3_scan,
|
|
111
|
+
s3_scan_stat,
|
|
112
|
+
s3_scandir,
|
|
113
|
+
s3_stat,
|
|
114
|
+
s3_symlink,
|
|
115
|
+
s3_sync,
|
|
116
|
+
s3_unlink,
|
|
117
|
+
s3_upload,
|
|
118
|
+
s3_walk,
|
|
119
|
+
)
|
|
8
120
|
from megfile.s3_path import S3Path
|
|
9
|
-
from megfile.sftp import
|
|
121
|
+
from megfile.sftp import (
|
|
122
|
+
is_sftp,
|
|
123
|
+
sftp_absolute,
|
|
124
|
+
sftp_chmod,
|
|
125
|
+
sftp_concat,
|
|
126
|
+
sftp_copy,
|
|
127
|
+
sftp_exists,
|
|
128
|
+
sftp_getmd5,
|
|
129
|
+
sftp_getmtime,
|
|
130
|
+
sftp_getsize,
|
|
131
|
+
sftp_glob,
|
|
132
|
+
sftp_glob_stat,
|
|
133
|
+
sftp_iglob,
|
|
134
|
+
sftp_isdir,
|
|
135
|
+
sftp_isfile,
|
|
136
|
+
sftp_islink,
|
|
137
|
+
sftp_listdir,
|
|
138
|
+
sftp_load_from,
|
|
139
|
+
sftp_lstat,
|
|
140
|
+
sftp_makedirs,
|
|
141
|
+
sftp_move,
|
|
142
|
+
sftp_open,
|
|
143
|
+
sftp_path_join,
|
|
144
|
+
sftp_readlink,
|
|
145
|
+
sftp_realpath,
|
|
146
|
+
sftp_remove,
|
|
147
|
+
sftp_rename,
|
|
148
|
+
sftp_resolve,
|
|
149
|
+
sftp_rmdir,
|
|
150
|
+
sftp_save_as,
|
|
151
|
+
sftp_scan,
|
|
152
|
+
sftp_scan_stat,
|
|
153
|
+
sftp_scandir,
|
|
154
|
+
sftp_stat,
|
|
155
|
+
sftp_symlink,
|
|
156
|
+
sftp_sync,
|
|
157
|
+
sftp_unlink,
|
|
158
|
+
sftp_walk,
|
|
159
|
+
)
|
|
10
160
|
from megfile.sftp_path import SftpPath
|
|
11
|
-
from megfile.smart import
|
|
161
|
+
from megfile.smart import (
|
|
162
|
+
smart_access,
|
|
163
|
+
smart_cache,
|
|
164
|
+
smart_combine_open,
|
|
165
|
+
smart_concat,
|
|
166
|
+
smart_copy,
|
|
167
|
+
smart_exists,
|
|
168
|
+
smart_getmd5,
|
|
169
|
+
smart_getmtime,
|
|
170
|
+
smart_getsize,
|
|
171
|
+
smart_glob,
|
|
172
|
+
smart_glob_stat,
|
|
173
|
+
smart_iglob,
|
|
174
|
+
smart_isdir,
|
|
175
|
+
smart_isfile,
|
|
176
|
+
smart_islink,
|
|
177
|
+
smart_listdir,
|
|
178
|
+
smart_load_content,
|
|
179
|
+
smart_load_from,
|
|
180
|
+
smart_load_text,
|
|
181
|
+
smart_lstat,
|
|
182
|
+
smart_makedirs,
|
|
183
|
+
smart_move,
|
|
184
|
+
smart_open,
|
|
185
|
+
smart_path_join,
|
|
186
|
+
smart_readlink,
|
|
187
|
+
smart_realpath,
|
|
188
|
+
smart_remove,
|
|
189
|
+
smart_rename,
|
|
190
|
+
smart_save_as,
|
|
191
|
+
smart_save_content,
|
|
192
|
+
smart_save_text,
|
|
193
|
+
smart_scan,
|
|
194
|
+
smart_scan_stat,
|
|
195
|
+
smart_scandir,
|
|
196
|
+
smart_stat,
|
|
197
|
+
smart_symlink,
|
|
198
|
+
smart_sync,
|
|
199
|
+
smart_touch,
|
|
200
|
+
smart_unlink,
|
|
201
|
+
smart_walk,
|
|
202
|
+
)
|
|
12
203
|
from megfile.smart_path import SmartPath
|
|
13
204
|
from megfile.stdio import is_stdio, stdio_open
|
|
14
205
|
from megfile.stdio_path import StdioPath
|
|
15
|
-
from megfile.version import VERSION as __version__
|
|
206
|
+
from megfile.version import VERSION as __version__ # noqa: F401
|
|
16
207
|
|
|
17
208
|
__all__ = [
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
209
|
+
"smart_access",
|
|
210
|
+
"smart_cache",
|
|
211
|
+
"smart_combine_open",
|
|
212
|
+
"smart_copy",
|
|
213
|
+
"smart_exists",
|
|
214
|
+
"smart_getmtime",
|
|
215
|
+
"smart_getsize",
|
|
216
|
+
"smart_glob_stat",
|
|
217
|
+
"smart_glob",
|
|
218
|
+
"smart_iglob",
|
|
219
|
+
"smart_isdir",
|
|
220
|
+
"smart_isfile",
|
|
221
|
+
"smart_islink",
|
|
222
|
+
"smart_listdir",
|
|
223
|
+
"smart_load_content",
|
|
224
|
+
"smart_save_content",
|
|
225
|
+
"smart_load_from",
|
|
226
|
+
"smart_load_text",
|
|
227
|
+
"smart_save_text",
|
|
228
|
+
"smart_makedirs",
|
|
229
|
+
"smart_open",
|
|
230
|
+
"smart_path_join",
|
|
231
|
+
"smart_realpath",
|
|
232
|
+
"smart_remove",
|
|
233
|
+
"smart_move",
|
|
234
|
+
"smart_rename",
|
|
235
|
+
"smart_save_as",
|
|
236
|
+
"smart_scan_stat",
|
|
237
|
+
"smart_scan",
|
|
238
|
+
"smart_scandir",
|
|
239
|
+
"smart_stat",
|
|
240
|
+
"smart_sync",
|
|
241
|
+
"smart_touch",
|
|
242
|
+
"smart_unlink",
|
|
243
|
+
"smart_walk",
|
|
244
|
+
"smart_cache",
|
|
245
|
+
"smart_getmd5",
|
|
246
|
+
"smart_symlink",
|
|
247
|
+
"smart_readlink",
|
|
248
|
+
"smart_lstat",
|
|
249
|
+
"smart_concat",
|
|
250
|
+
"is_s3",
|
|
251
|
+
"s3_access",
|
|
252
|
+
"s3_buffered_open",
|
|
253
|
+
"s3_cached_open",
|
|
254
|
+
"s3_copy",
|
|
255
|
+
"s3_download",
|
|
256
|
+
"s3_exists",
|
|
257
|
+
"s3_getmd5",
|
|
258
|
+
"s3_getmtime",
|
|
259
|
+
"s3_getsize",
|
|
260
|
+
"s3_glob_stat",
|
|
261
|
+
"s3_glob",
|
|
262
|
+
"s3_hasbucket",
|
|
263
|
+
"s3_iglob",
|
|
264
|
+
"s3_isdir",
|
|
265
|
+
"s3_isfile",
|
|
266
|
+
"s3_listdir",
|
|
267
|
+
"s3_load_content",
|
|
268
|
+
"s3_load_from",
|
|
269
|
+
"s3_makedirs",
|
|
270
|
+
"s3_memory_open",
|
|
271
|
+
"s3_open",
|
|
272
|
+
"s3_path_join",
|
|
273
|
+
"s3_pipe_open",
|
|
274
|
+
"s3_prefetch_open",
|
|
275
|
+
"s3_remove",
|
|
276
|
+
"s3_rename",
|
|
277
|
+
"s3_move",
|
|
278
|
+
"s3_sync",
|
|
279
|
+
"s3_save_as",
|
|
280
|
+
"s3_scan_stat",
|
|
281
|
+
"s3_scan",
|
|
282
|
+
"s3_scandir",
|
|
283
|
+
"s3_stat",
|
|
284
|
+
"s3_lstat",
|
|
285
|
+
"s3_unlink",
|
|
286
|
+
"s3_upload",
|
|
287
|
+
"s3_walk",
|
|
288
|
+
"s3_symlink",
|
|
289
|
+
"s3_readlink",
|
|
290
|
+
"s3_concat",
|
|
291
|
+
"is_fs",
|
|
292
|
+
"fs_abspath",
|
|
293
|
+
"fs_access",
|
|
294
|
+
"fs_exists",
|
|
295
|
+
"fs_getmtime",
|
|
296
|
+
"fs_getsize",
|
|
297
|
+
"fs_glob_stat",
|
|
298
|
+
"fs_glob",
|
|
299
|
+
"fs_iglob",
|
|
300
|
+
"fs_isabs",
|
|
301
|
+
"fs_isdir",
|
|
302
|
+
"fs_isfile",
|
|
303
|
+
"fs_islink",
|
|
304
|
+
"fs_ismount",
|
|
305
|
+
"fs_listdir",
|
|
306
|
+
"fs_load_from",
|
|
307
|
+
"fs_makedirs",
|
|
308
|
+
"fs_realpath",
|
|
309
|
+
"fs_relpath",
|
|
310
|
+
"fs_remove",
|
|
311
|
+
"fs_rename",
|
|
312
|
+
"fs_move",
|
|
313
|
+
"fs_sync",
|
|
314
|
+
"fs_save_as",
|
|
315
|
+
"fs_scan_stat",
|
|
316
|
+
"fs_scan",
|
|
317
|
+
"fs_scandir",
|
|
318
|
+
"fs_stat",
|
|
319
|
+
"fs_lstat",
|
|
320
|
+
"fs_unlink",
|
|
321
|
+
"fs_walk",
|
|
322
|
+
"fs_cwd",
|
|
323
|
+
"fs_home",
|
|
324
|
+
"fs_expanduser",
|
|
325
|
+
"fs_resolve",
|
|
326
|
+
"fs_getmd5",
|
|
327
|
+
"fs_symlink",
|
|
328
|
+
"fs_readlink",
|
|
329
|
+
"is_http",
|
|
330
|
+
"http_open",
|
|
331
|
+
"http_stat",
|
|
332
|
+
"http_getsize",
|
|
333
|
+
"http_getmtime",
|
|
334
|
+
"http_exists",
|
|
335
|
+
"is_stdio",
|
|
336
|
+
"stdio_open",
|
|
337
|
+
"is_sftp",
|
|
338
|
+
"sftp_readlink",
|
|
339
|
+
"sftp_absolute",
|
|
340
|
+
"sftp_glob",
|
|
341
|
+
"sftp_iglob",
|
|
342
|
+
"sftp_glob_stat",
|
|
343
|
+
"sftp_resolve",
|
|
344
|
+
"sftp_isdir",
|
|
345
|
+
"sftp_exists",
|
|
346
|
+
"sftp_scandir",
|
|
347
|
+
"sftp_getmtime",
|
|
348
|
+
"sftp_getsize",
|
|
349
|
+
"sftp_isfile",
|
|
350
|
+
"sftp_listdir",
|
|
351
|
+
"sftp_load_from",
|
|
352
|
+
"sftp_makedirs",
|
|
353
|
+
"sftp_realpath",
|
|
354
|
+
"sftp_rename",
|
|
355
|
+
"sftp_move",
|
|
356
|
+
"sftp_remove",
|
|
357
|
+
"sftp_scan",
|
|
358
|
+
"sftp_scan_stat",
|
|
359
|
+
"sftp_stat",
|
|
360
|
+
"sftp_lstat",
|
|
361
|
+
"sftp_unlink",
|
|
362
|
+
"sftp_walk",
|
|
363
|
+
"sftp_path_join",
|
|
364
|
+
"sftp_getmd5",
|
|
365
|
+
"sftp_symlink",
|
|
366
|
+
"sftp_islink",
|
|
367
|
+
"sftp_save_as",
|
|
368
|
+
"sftp_open",
|
|
369
|
+
"sftp_chmod",
|
|
370
|
+
"sftp_rmdir",
|
|
371
|
+
"sftp_copy",
|
|
372
|
+
"sftp_sync",
|
|
373
|
+
"sftp_concat",
|
|
374
|
+
"is_hdfs",
|
|
375
|
+
"hdfs_exists",
|
|
376
|
+
"hdfs_stat",
|
|
377
|
+
"hdfs_getmtime",
|
|
378
|
+
"hdfs_getsize",
|
|
379
|
+
"hdfs_isdir",
|
|
380
|
+
"hdfs_isfile",
|
|
381
|
+
"hdfs_listdir",
|
|
382
|
+
"hdfs_load_from",
|
|
383
|
+
"hdfs_move",
|
|
384
|
+
"hdfs_remove",
|
|
385
|
+
"hdfs_scan",
|
|
386
|
+
"hdfs_scan_stat",
|
|
387
|
+
"hdfs_scandir",
|
|
388
|
+
"hdfs_unlink",
|
|
389
|
+
"hdfs_walk",
|
|
390
|
+
"hdfs_getmd5",
|
|
391
|
+
"hdfs_save_as",
|
|
392
|
+
"hdfs_open",
|
|
393
|
+
"hdfs_glob",
|
|
394
|
+
"hdfs_glob_stat",
|
|
395
|
+
"hdfs_iglob",
|
|
396
|
+
"hdfs_makedirs",
|
|
397
|
+
"S3Path",
|
|
398
|
+
"FSPath",
|
|
399
|
+
"HttpPath",
|
|
400
|
+
"HttpsPath",
|
|
401
|
+
"StdioPath",
|
|
402
|
+
"SmartPath",
|
|
403
|
+
"SftpPath",
|
|
404
|
+
"HdfsPath",
|
|
214
405
|
]
|