-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathFs.hx
845 lines (673 loc) · 26.1 KB
/
Fs.hx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
/*
* Copyright (C)2014-2015 Haxe Foundation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
package js.node;
import haxe.DynamicAccess;
import haxe.extern.EitherType;
import js.Error;
import js.node.Buffer;
import js.node.fs.Stats;
import js.node.fs.FSWatcher;
import js.node.fs.ReadStream;
import js.node.fs.WriteStream;
/**
Most FS functions now support passing `String` and `Buffer`.
This type is used for path arguments and allows passing either of those.
**/
typedef FsPath = EitherType<String,Buffer>;
/**
Possible options for `Fs.watchFile`.
**/
typedef FsWatchFileOptions = {
/**
indicates whether the process should continue to run as long as files are being watched
default: true
**/
@:optional var persistent:Bool;
/**
indicates how often the target should be polled, in milliseconds
default: 5007
**/
@:optional var interval:Int;
}
/**
The `mode` argument used by `Fs.open` and related functions
can be either an integer or a string with octal number.
**/
typedef FsMode = EitherType<Int,String>;
/**
Possible options for `Fs.writeFile` and `Fs.appendFile`.
**/
typedef FsWriteFileOptions = {
/**
Encoding for writing strings.
Defaults to 'utf8'.
Ignored if data is a buffer
**/
@:optional var encoding:String;
/**
default = 438 (aka 0666 in Octal)
**/
@:optional var mode:FsMode;
/**
default: 'w' for `Fs.writeFile`, 'a' for `Fs.appendFile`
**/
@:optional var flag:FsOpenFlag;
}
/**
Defaults:
{ flags: 'r',
encoding: null,
fd: null,
mode: 0666,
autoClose: true
}
**/
/**
Options for `Fs.createReadStream`.
**/
typedef FsCreateReadStreamOptions = {
/**
default: 'r'
**/
@:optional var flags:FsOpenFlag;
/**
can be 'utf8', 'ascii', or 'base64'.
default: null
**/
@:optional var encoding:String;
/**
default: null
**/
@:optional var fd:Int;
/**
default: 0666
**/
@:optional var mode:FsMode;
/**
If autoClose is false, then the file descriptor won't be closed, even if there's an error.
It is your responsiblity to close it and make sure there's no file descriptor leak.
If autoClose is set to true (default behavior), on error or end the file
descriptor will be closed automatically.
**/
@:optional var autoClose:Bool;
/**
Start of the range of bytes to read
**/
@:optional var start:Int;
/**
End of the range of bytes to read
**/
@:optional var end:Int;
};
/**
Options for `Fs.createWriteStream`.
**/
typedef FsCreateWriteStreamOptions = {
/**
default: 'w'
**/
@:optional var flags:FsOpenFlag;
/**
default: null
**/
@:optional var encoding:String;
/**
default: 0666
**/
@:optional var mode:FsMode;
/**
position to write data the beginning of the file.
**/
@:optional var start:Int;
}
/**
Enumeration of possible symlink types
**/
@:enum abstract SymlinkType(String) from String to String {
var Dir = "dir";
var File = "file";
var Junction = "junction";
}
/**
Enumeration of possible flags for opening file.
The exclusive flag 'x' (O_EXCL flag in open(2)) ensures that path is newly created.
On POSIX systems, path is considered to exist even if it is a symlink to a non-existent file.
The exclusive flag may or may not work with network file systems.
On Linux, positional writes don't work when the file is opened in append mode.
The kernel ignores the position argument and always appends the data to the end of the file.
**/
@:enum abstract FsOpenFlag(String) from String to String {
/**
Open file for reading.
An exception occurs if the file does not exist.
**/
var Read = "r";
/**
Open file for reading and writing.
An exception occurs if the file does not exist.
**/
var ReadWrite = "r+";
/**
Open file for reading in synchronous mode. Instructs the operating system to bypass the local file system cache.
This is primarily useful for opening files on NFS mounts as it allows you to skip the potentially stale local cache.
It has a very real impact on I/O performance so don't use this flag unless you need it.
Note that this doesn't turn `Fs.open` into a synchronous blocking call.
If that's what you want then you should be using `Fs.openSync`
*/
var ReadSync = "rs";
/**
Open file for reading and writing, telling the OS to open it synchronously.
See notes for `ReadSync` about using this with caution.
**/
var ReadWriteSync = "rs+";
/**
Open file for writing.
The file is created (if it does not exist) or truncated (if it exists).
**/
var WriteCreate = "w";
/**
Like `WriteCreate` but fails if path exists.
**/
var WriteCheck = "wx";
/**
Open file for reading and writing.
The file is created (if it does not exist) or truncated (if it exists).
**/
var WriteReadCreate = "w+";
/**
Like `WriteReadCreate` but fails if path exists.
**/
var WriteReadCheck = "wx+";
/**
Open file for appending.
The file is created if it does not exist.
**/
var AppendCreate = "a";
/**
Like `AppendCreate` but fails if path exists.
**/
var AppendCheck = "ax";
/**
Open file for reading and appending.
The file is created if it does not exist.
*/
var AppendReadCreate = "a+";
/**
Like `AppendReadCreate` but fails if path exists.
**/
var AppendReadCheck = "ax+";
}
/**
File I/O is provided by simple wrappers around standard POSIX functions.
All the methods have asynchronous and synchronous forms.
The asynchronous form always take a completion callback as its last argument.
The arguments passed to the completion callback depend on the method,
but the first argument is always reserved for an exception.
If the operation was completed successfully, then the first argument will be null.
When using the synchronous form any exceptions are immediately thrown.
You can use try/catch to handle exceptions or allow them to bubble up.
**/
@:jsRequire("fs")
extern class Fs {
/**
Asynchronous rename(2).
**/
static function rename(oldPath:FsPath, newPath:FsPath, callback:Error->Void):Void;
/**
Synchronous rename(2).
**/
static function renameSync(oldPath:FsPath, newPath:FsPath):Void;
/**
Asynchronous ftruncate(2).
**/
static function ftruncate(fd:Int, len:Int, callback:Error->Void):Void;
/**
Synchronous ftruncate(2).
**/
static function ftruncateSync(fd:Int, len:Int):Void;
/**
Asynchronous truncate(2).
**/
static function truncate(path:FsPath, len:Int, callback:Error->Void):Void;
/**
Synchronous truncate(2).
**/
static function truncateSync(path:FsPath, len:Int):Void;
/**
Asynchronous chown(2).
**/
static function chown(path:FsPath, uid:Int, gid:Int, callback:Error->Void):Void;
/**
Synchronous chown(2).
**/
static function chownSync(path:FsPath, uid:Int, gid:Int):Void;
/**
Asynchronous fchown(2).
**/
static function fchown(fd:Int, uid:Int, gid:Int, callback:Error->Void):Void;
/**
Synchronous fchown(2).
**/
static function fchownSync(fd:Int, uid:Int, gid:Int):Void;
/**
Asynchronous lchown(2).
**/
static function lchown(path:FsPath, uid:Int, gid:Int, callback:Error->Void):Void;
/**
Synchronous lchown(2).
**/
static function lchownSync(path:FsPath, uid:Int, gid:Int):Void;
/**
Asynchronous chmod(2).
**/
static function chmod(path:FsPath, mode:FsMode, callback:Error->Void):Void;
/**
Synchronous chmod(2).
**/
static function chmodSync(path:FsPath, mode:FsMode):Void;
/**
Asynchronous fchmod(2).
**/
static function fchmod(fd:Int, mode:FsMode, callback:Error->Void):Void;
/**
Synchronous fchmod(2).
**/
static function fchmodSync(fd:Int, mode:FsMode):Void;
/**
Asynchronous lchmod(2).
Only available on Mac OS X.
**/
static function lchmod(path:FsPath, mode:FsMode, callback:Error->Void):Void;
/**
Synchronous lchmod(2).
**/
static function lchmodSync(path:FsPath, mode:FsMode):Void;
/**
Asynchronous stat(2).
*/
static function stat(path:FsPath, callback:Error->Stats->Void):Void;
/**
Asynchronous lstat(2).
lstat() is identical to stat(), except that if path is a symbolic link,
then the link itself is stat-ed, not the file that it refers to.
**/
static function lstat(path:FsPath, callback:Error->Stats->Void):Void;
/**
Asynchronous fstat(2).
fstat() is identical to stat(), except that the file to be stat-ed
is specified by the file descriptor fd.
**/
static function fstat(fd:Int, callback:Error->Stats->Void):Void;
/**
Synchronous stat(2).
**/
static function statSync(path:FsPath):Stats;
/**
Synchronous lstat(2).
**/
static function lstatSync(path:FsPath):Stats;
/**
Synchronous fstat(2).
**/
static function fstatSync(fd:Int):Stats;
/**
Asynchronous link(2).
**/
static function link(srcpath:FsPath, dstpath:FsPath, callback:Error->Void):Void;
/**
Synchronous link(2).
**/
static function linkSync(srcpath:FsPath, dstpath:FsPath):Void;
/**
Asynchronous symlink(2).
The `type` argument can be set to 'dir', 'file', or 'junction' (default is 'file')
and is only available on Windows (ignored on other platforms). Note that Windows junction
points require the destination path to be absolute. When using 'junction', the destination
argument will automatically be normalized to absolute path.
**/
@:overload(function(srcpath:FsPath, dstpath:FsPath, callback:Error->Void):Void {})
static function symlink(srcpath:FsPath, dstpath:FsPath, type:SymlinkType, callback:Error->Void):Void;
/**
Synchronous symlink(2).
**/
@:overload(function(srcpath:FsPath, dstpath:FsPath):Void {})
static function symlinkSync(srcpath:FsPath, dstpath:FsPath, type:SymlinkType):Void;
/**
Asynchronous readlink(2).
**/
static function readlink(path:FsPath, callback:Error->String->Void):Void;
/**
Synchronous readlink(2).
Returns the symbolic link's string value.
**/
static function readlinkSync(path:FsPath):String;
/**
Asynchronous realpath(2).
The callback gets two arguments (err, resolvedPath).
May use process.cwd to resolve relative paths.
`cache` is an object literal of mapped paths that can be used to force a specific path resolution
or avoid additional `stat` calls for known real paths.
**/
@:overload(function(path:FsPath, callback:Error->String->Void):Void {})
static function realpath(path:FsPath, cache:DynamicAccess<String>, callback:Error->String->Void):Void;
/**
Synchronous realpath(2).
Returns the resolved path.
**/
@:overload(function(path:FsPath):String {})
static function realpathSync(path:FsPath, cache:DynamicAccess<String>):String;
/**
Asynchronous unlink(2).
**/
static function unlink(path:FsPath, callback:Error->Void):Void;
/**
Synchronous unlink(2).
**/
static function unlinkSync(path:FsPath):Void;
/**
Asynchronous rmdir(2).
**/
static function rmdir(path:FsPath, callback:Error->Void):Void;
/**
Synchronous rmdir(2).
**/
static function rmdirSync(path:FsPath):Void;
/**
Asynchronous mkdir(2).
`mode` defaults to 0777.
**/
@:overload(function(path:FsPath, callback:Error->Void):Void {})
static function mkdir(path:FsPath, mode:FsMode, callback:Error->Void):Void;
/**
Synchronous mkdir(2).
**/
static function mkdirSync(path:FsPath, ?mode:FsMode):Void;
/**
Creates a unique temporary directory.
Generates six random characters to be appended behind a required `prefix` to create a unique temporary directory.
The created folder path is passed as a string to the `callback`'s second parameter.
**/
static function mkdtemp(prefix:String, callback:Error->String->Void):Void;
/**
The synchronous version of `mkdtemp`.
Returns the created folder path.
**/
static function mkdtempSync(template:String):String;
/**
Asynchronous readdir(3).
Reads the contents of a directory.
The callback gets two arguments (err, files) where files is an array of the
names of the files in the directory excluding '.' and '..'.
**/
static function readdir(path:FsPath, callback:Error->Array<String>->Void):Void;
/**
Synchronous readdir(3).
Returns an array of filenames excluding '.' and '..'.
**/
static function readdirSync(path:FsPath):Array<String>;
/**
Asynchronous close(2).
**/
static function close(fd:Int, callback:Error->Void):Void;
/**
Synchronous close(2).
**/
static function closeSync(fd:Int):Void;
/**
Asynchronous file open. See open(2).
See `FsOpenFlag` for description of possible `flags`.
`mode` sets the file mode (permission and sticky bits), but only if the file was created.
It defaults to 0666, readable and writeable.
The `callback` gets two arguments (err, fd).
**/
@:overload(function(path:FsPath, flags:FsOpenFlag, callback:Error->Int->Void):Void {})
static function open(path:FsPath, flags:FsOpenFlag, mode:FsMode, callback:Error->Int->Void):Void;
/**
Synchronous version of open().
**/
@:overload(function(path:FsPath, flags:FsOpenFlag):Int {})
static function openSync(path:FsPath, flags:FsOpenFlag, mode:FsMode):Int;
/**
Change file timestamps of the file referenced by the supplied path.
**/
static function utimes(path:FsPath, atime:Date, mtime:Date, callback:Error->Void):Void;
/**
Change file timestamps of the file referenced by the supplied path.
**/
static function utimesSync(path:FsPath, atime:Date, mtime:Date):Void;
/**
Change the file timestamps of a file referenced by the supplied file descriptor.
**/
static function futimes(fd:Int, atime:Date, mtime:Date, callback:Error->Void):Void;
/**
Change the file timestamps of a file referenced by the supplied file descriptor.
**/
static function futimesSync(fd:Int, atime:Date, mtime:Date):Void;
/**
Asynchronous fsync(2).
**/
static function fsync(fd:Int, callback:Error->Void):Void;
/**
Synchronous fsync(2).
**/
static function fsyncSync(fd:Int):Void;
/**
Documentation for the overloads with the `buffer` argument:
Write `buffer` to the file specified by `fd`.
`offset` and `length` determine the part of the `buffer` to be written.
`position` refers to the offset from the beginning of the file where this data should be written.
If position is null, the data will be written at the current position. See pwrite(2).
The `callback` will be given three arguments (err, written, buffer)
where `written` specifies how many bytes were written from `buffer`.
---
Documentation for the overloads with the `data` argument:
Write `data` to the file specified by `fd`. If `data` is not a `Buffer` instance then
the value will be coerced to a string.
`position` refers to the offset from the beginning of the file where this data should be written.
If omitted, the data will be written at the current position. See pwrite(2).
`encoding` is the expected string encoding.
The `callback` will receive the arguments (err, written, string) where written specifies how many bytes
the passed string required to be written. Note that bytes written is not the same as string characters.
See `Buffer.byteLength`.
Unlike when writing `buffer`, the entire string must be written. No substring may be specified.
This is because the byte offset of the resulting data may not be the same as the string offset.
---
Common notes:
Note that it is unsafe to use `write` multiple times on the same file without waiting for the callback.
For this scenario, `createWriteStream` is strongly recommended.
On Linux, positional writes don't work when the file is opened in append mode. The kernel ignores the position
argument and always appends the data to the end of the file.
**/
@:overload(function(fd:Int, data:Dynamic, position:Int, encoding:String, callback:Error->Int->String->Void):Void {})
@:overload(function(fd:Int, data:Dynamic, position:Int, callback:Error->Int->String->Void):Void {})
@:overload(function(fd:Int, data:Dynamic, callback:Error->Int->String->Void):Void {})
@:overload(function(fd:Int, buffer:Buffer, offset:Int, length:Int, callback:Error->Int->Buffer->Void):Void {})
static function write(fd:Int, buffer:Buffer, offset:Int, length:Int, position:Int, callback:Error->Int->Buffer->Void):Void;
/**
Synchronous version of `write`. Returns the number of bytes written.
**/
@:overload(function(fd:Int, data:Dynamic, position:Int, encoding:String):Int {})
@:overload(function(fd:Int, data:Dynamic, ?position:Int):Int {})
static function writeSync(fd:Int, buffer:Buffer, offset:Int, length:Int, ?position:Int):Int;
/**
Read data from the file specified by `fd`.
`buffer` is the buffer that the data will be written to.
`offset` is the offset in the `buffer` to start writing at.
`length` is an integer specifying the number of bytes to read.
`position` is an integer specifying where to begin reading from in the file.
If position is null, data will be read from the current file position.
The `callback` is given the three arguments, (err, bytesRead, buffer).
**/
static function read(fd:Int, buffer:Buffer, offset:Int, length:Int, position:Null<Int>, callback:Error->Int->Buffer->Void):Void;
/**
Synchronous version of `read`. Returns the number of bytes read.
**/
static function readSync(fd:Int, buffer:Buffer, offset:Int, length:Int, position:Null<Int>):Int;
/**
Asynchronously reads the entire contents of a file.
The `callback` is passed two arguments (err, data), where data is the contents of the file.
If no `encoding` is specified, then the raw buffer is returned.
If `options` is a string, then it specifies the encoding.
**/
@:overload(function(filename:FsPath, callback:Error->Buffer->Void):Void {})
@:overload(function(filename:FsPath, options:{flag:FsOpenFlag}, callback:Error->Buffer->Void):Void {})
@:overload(function(filename:FsPath, options:String, callback:Error->String->Void):Void {})
static function readFile(filename:FsPath, options:{encoding:String, ?flag:FsOpenFlag}, callback:Error->String->Void):Void;
/**
Synchronous version of `readFile`. Returns the contents of the filename.
If the `encoding` option is specified then this function returns a string. Otherwise it returns a buffer.
**/
@:overload(function(filename:FsPath):Buffer {})
@:overload(function(filename:FsPath, options:{flag:FsOpenFlag}):Buffer {})
@:overload(function(filename:FsPath, options:String):String {})
static function readFileSync(filename:FsPath, options:{encoding:String, ?flag:FsOpenFlag}):String;
/**
Asynchronously writes data to a file, replacing the file if it already exists.
`data` can be a string or a buffer.
The encoding option is ignored if data is a buffer. It defaults to 'utf8'.
**/
@:overload(function(filename:FsPath, data:Buffer, callback:Error->Void):Void {})
@:overload(function(filename:FsPath, data:String, callback:Error->Void):Void {})
@:overload(function(filename:FsPath, data:Buffer, options:EitherType<String,FsWriteFileOptions>, callback:Error->Void):Void {})
static function writeFile(filename:FsPath, data:String, options:EitherType<String,FsWriteFileOptions>, callback:Error->Void):Void;
/**
The synchronous version of `writeFile`.
**/
@:overload(function(filename:FsPath, data:Buffer):Void {})
@:overload(function(filename:FsPath, data:String):Void {})
@:overload(function(filename:FsPath, data:Buffer, options:EitherType<String,FsWriteFileOptions>):Void {})
static function writeFileSync(filename:FsPath, data:String, options:EitherType<String,FsWriteFileOptions>):Void;
/**
Asynchronously append data to a file, creating the file if it not yet exists.
`data` can be a string or a buffer.
**/
@:overload(function(filename:FsPath, data:Buffer, callback:Error->Void):Void {})
@:overload(function(filename:FsPath, data:String, callback:Error->Void):Void {})
@:overload(function(filename:FsPath, data:Buffer, options:EitherType<String,FsWriteFileOptions>, callback:Error->Void):Void {})
static function appendFile(filename:FsPath, data:String, options:EitherType<String,FsWriteFileOptions>, callback:Error->Void):Void;
/**
The synchronous version of `appendFile`.
**/
@:overload(function(filename:FsPath, data:Buffer):Void {})
@:overload(function(filename:FsPath, data:String):Void {})
@:overload(function(filename:FsPath, data:Buffer, options:EitherType<String,FsWriteFileOptions>):Void {})
static function appendFileSync(filename:FsPath, data:String, options:EitherType<String,FsWriteFileOptions>):Void;
/**
Unstable. Use `watch` instead, if possible.
Watch for changes on `filename`.
The callback `listener` will be called each time the file is accessed.
The `options` if provided should be an object containing two members:
- `persistent` indicates whether the process should continue to run as long as files are being watched.
- `interval` indicates how often the target should be polled, in milliseconds.
The default is { persistent: true, interval: 5007 }.
The `listener` gets two arguments: the current stat object and the previous stat object.
**/
@:overload(function(filename:FsPath, listener:Stats->Stats->Void):Void {})
static function watchFile(filename:FsPath, options:FsWatchFileOptions, listener:Stats->Stats->Void):Void;
/**
Unstable. Use `watch` instead, if possible.
Stop watching for changes on filename.
If `listener` is specified, only that particular listener is removed.
Otherwise, all listeners are removed and you have effectively stopped watching filename.
Calling `unwatchFile` with a `filename` that is not being watched is a no-op, not an error.
**/
static function unwatchFile(filename:FsPath, ?listener:Stats->Stats->Void):Void;
/**
Watch for changes on `filename`, where filename is either a file or a directory.
`persistent` indicates whether the process should continue to run as long as files are being watched. Default is `true`.
The `listener` callback gets two arguments (event, filename). event is either 'rename' or 'change', and filename
is the name of the file which triggered the event.
**/
@:overload(function(filename:FsPath):FSWatcher {})
@:overload(function(filename:FsPath, options:{persistent:Bool,?recursive:Bool}, listener:FSWatcherChangeType->String->Void):FSWatcher {})
static function watch(filename:FsPath, listener:FSWatcherChangeType->FsPath->Void):FSWatcher;
/**
Test whether or not the given `path` exists by checking with the file system.
Then call the `callback` argument with either `true` or `false`.
`exists` is an anachronism and exists only for historical reasons.
There should almost never be a reason to use it in your own code.
In particular, checking if a file exists before opening it is an anti-pattern that leaves you vulnerable to race conditions:
another process may remove the file between the calls to `exists` and `open`.
Just open the file and handle the error when it's not there.
**/
@:deprecated("Use Fs.stat or Fs.access instead")
static function exists(path:FsPath, callback:Bool->Void):Void;
/**
Synchronous version of `exists`.
**/
@:deprecated("Use Fs.statSync or Fs.accessSync instead.")
static function existsSync(path:FsPath):Bool;
/**
Tests a user's permissions for the file specified by path.
`mode` is an optional integer that specifies the accessibility checks to be performed.
The following constants define the possible values of mode: `F_OK`, `R_OK`, `W_OK`, `X_OK`.
It is possible to create a mask consisting of the bitwise OR of two or more values.
If no `mode` is specified, `F_OK` is used as a default.
The final argument, `callback`, is a callback function that is invoked with a possible error argument.
If any of the accessibility checks fail, the error argument will be populated.
**/
@:overload(function(path:FsPath, callback:Error->Void):Void {})
static function access(path:FsPath, mode:Int, callback:Error->Void):Void;
/**
A mode flag for `access` and `accessSync` methods:
File is visible to the calling process.
This is useful for determining if a file exists, but says nothing about rwx permissions.
**/
static var F_OK(default,null):Int;
/**
A mode flag for `access` and `accessSync` methods:
File can be read by the calling process.
**/
static var R_OK(default,null):Int;
/**
A mode flag for `access` and `accessSync` methods:
File can be written by the calling process.
**/
static var W_OK(default,null):Int;
/**
A mode flag for `access` and `accessSync` methods:
File can be executed by the calling process.
This has no effect on Windows.
**/
static var X_OK(default,null):Int;
/**
Synchronous version of `access`.
This throws if any accessibility checks fail, and does nothing otherwise.
**/
static function accessSync(path:FsPath, ?mode:Int):Void;
/**
Returns a new ReadStream object (See Readable Stream).
`options` can include `start` and `end` values to read a range of bytes from the file instead of the entire file.
Both `start` and `end` are inclusive and start at 0.
The encoding can be 'utf8', 'ascii', or 'base64'.
If `autoClose` is `false`, then the file descriptor won't be closed, even if there's an error.
It is your responsiblity to close it and make sure there's no file descriptor leak.
If `autoClose` is set to true (default behavior), on error or end the file descriptor will be closed automatically.
**/
static function createReadStream(path:FsPath, ?options:EitherType<String,FsCreateReadStreamOptions>):ReadStream;
/**
Returns a new WriteStream object (See Writable Stream).
`options` may also include a `start` option to allow writing data at some position past the beginning of the file.
Modifying a file rather than replacing it may require a flags mode of r+ rather than the default mode w.
**/
static function createWriteStream(path:FsPath, ?options:FsCreateWriteStreamOptions):WriteStream;
}