forked from pathikrit/better-files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFile.scala
1095 lines (892 loc) · 39 KB
/
File.scala
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
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package better.files
import java.io.{File => JFile, _}
import java.net.{URI, URL}
import java.nio.charset.Charset
import java.nio.channels._
import java.nio.file._
import java.nio.file.attribute._
import java.security.{DigestInputStream, MessageDigest}
import java.time.Instant
import java.util.regex.Pattern
import java.util.zip._
import javax.xml.bind.DatatypeConverter
import scala.collection.JavaConverters._
import scala.util.Properties
/**
* Scala wrapper around java.nio.files.Path
*/
class File private(val path: Path) {
//TODO: LinkOption?
def pathAsString: String =
path.toString
def toJava: JFile =
path.toFile
/**
* Name of file
* Certain files may not have a name e.g. root directory - returns empty string in that case
*
* @return
*/
def name: String =
nameOption.getOrElse("")
/**
* Certain files may not have a name e.g. root directory - returns None in that case
*
* @return
*/
def nameOption: Option[String] =
Option(path.getFileName).map(_.toString)
def root: File =
path.getRoot
def nameWithoutExtension: String =
if (hasExtension) name.substring(0, name lastIndexOf ".") else name
/**
* @return extension (including the dot) of this file if it is a regular file and has an extension, else None
*/
def extension: Option[String] =
extension()
/**
* @param includeDot whether the dot should be included in the extension or not
* @param includeAll whether all extension tokens should be included, or just the last one e.g. for bundle.tar.gz should it be .tar.gz or .gz
* @param toLowerCase to lowercase the extension or not e.g. foo.HTML should have .html or .HTML
* @return extension of this file if it is a regular file and has an extension, else None
*/
def extension(includeDot: Boolean = true, includeAll: Boolean = false, toLowerCase: Boolean = true): Option[String] = {
when(hasExtension) {
val dot = if (includeAll) name indexOf "." else name lastIndexOf "."
val index = if (includeDot) dot else dot + 1
val extension = name.substring(index)
if (toLowerCase) extension.toLowerCase else extension
}
}
/**
* Returns the extension if file is a regular file
* If file is unreadable or does not exist, it is assumed to be not a regular file
* See: https://github.com/pathikrit/better-files/issues/89
*
* @return
*/
def hasExtension: Boolean =
(isRegularFile || notExists) && (name contains ".")
/**
* Changes the file-extension by renaming this file; if file does not have an extension, it adds the extension
* Example usage file"foo.java".changeExtensionTo(".scala")
*/
def changeExtensionTo(extension: String): File =
if (isRegularFile) renameTo(s"$nameWithoutExtension$extension") else this
def contentType: Option[String] =
Option(Files.probeContentType(path))
/**
* Return parent of this file
* NOTE: This API returns null if this file is the root;
* please use parentOption if you expect to handle roots
*
* @see parentOption
* @return
*/
def parent: File =
parentOption.orNull
/**
*
* @return Some(parent) of this file or None if this is the root and thus has no parent
*/
def parentOption: Option[File] =
Option(path.getParent).map(File.apply)
def /(child: String): File =
path.resolve(child)
def createChild(child: String, asDirectory: Boolean = false, createParents: Boolean = false)(implicit attributes: File.Attributes = File.Attributes.default, linkOptions: File.LinkOptions = File.LinkOptions.default): File =
(this / child).createIfNotExists(asDirectory, createParents)(attributes, linkOptions)
/**
* Create this file. If it exists, don't do anything
*
* @param asDirectory If you want this file to be created as a directory instead, set this to true (false by default)
* @param createParents If you also want all the parents to be created from root to this file (false by defailt)
* @param attributes
* @param linkOptions
* @return
*/
def createIfNotExists(asDirectory: Boolean = false, createParents: Boolean = false)(implicit attributes: File.Attributes = File.Attributes.default, linkOptions: File.LinkOptions = File.LinkOptions.default): this.type = {
if (exists(linkOptions)) {
this
} else if (asDirectory) {
createDirectories()(attributes)
} else {
if (createParents) parent.createDirectories()(attributes)
Files.createFile(path, attributes: _*)
this
}
}
def exists(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): Boolean =
Files.exists(path, linkOptions: _*)
def notExists(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): Boolean =
Files.notExists(path, linkOptions: _*)
def sibling(name: String): File =
path.resolveSibling(name)
def isSiblingOf(sibling: File): Boolean =
sibling.isChildOf(parent)
def siblings: Files =
parent.list.filterNot(_ == this)
def isChildOf(parent: File): Boolean =
parent.isParentOf(this)
/**
* Check if this directory contains this file
*
* @param file
* @return true if this is a directory and it contains this file
*/
def contains(file: File): Boolean =
isDirectory && (file.path startsWith path)
def isParentOf(child: File): Boolean =
contains(child)
def bytes: Iterator[Byte] =
newInputStream.buffered.bytes //TODO: ManagedResource here?
def loadBytes: Array[Byte] =
Files.readAllBytes(path)
def byteArray: Array[Byte] =
loadBytes
def createDirectory()(implicit attributes: File.Attributes = File.Attributes.default): this.type = {
Files.createDirectory(path, attributes: _*)
this
}
def createDirectories()(implicit attributes: File.Attributes = File.Attributes.default): this.type = {
Files.createDirectories(path, attributes: _*)
this
}
def chars(implicit charset: Charset = File.defaultCharset): Iterator[Char] =
newBufferedReader(charset).chars //TODO: ManagedResource here?
/**
* Load all lines from this file
* Note: Large files may cause an OutOfMemory in which case, use the streaming version @see lineIterator
*
* @param charset
* @return all lines in this file
*/
def lines(implicit charset: Charset = File.defaultCharset): Traversable[String] =
Files.readAllLines(path, charset).asScala
/**
* Iterate over lines in a file (auto-close stream on complete)
* NOTE: If the iteration is partial, it may leave a stream open
* If you want partial iteration use @see lines()
*
* @param charset
* @return
*/
def lineIterator(implicit charset: Charset = File.defaultCharset): Iterator[String] =
Files.lines(path, charset).toAutoClosedIterator
def tokens(implicit config: Scanner.Config = Scanner.Config.default, charset: Charset = File.defaultCharset): Traversable[String] =
bufferedReader(charset).flatMap(_.tokens(config))
def contentAsString(implicit charset: Charset = File.defaultCharset): String =
new String(byteArray, charset)
def printLines(lines: Iterator[Any])(implicit openOptions: File.OpenOptions = File.OpenOptions.append): this.type = {
for {
pw <- printWriter()(openOptions)
line <- lines
} pw.println(line)
this
}
/**
* For large number of lines that may not fit in memory, use printLines
*
* @param lines
* @param openOptions
* @param charset
* @return
*/
def appendLines(lines: String*)(implicit openOptions: File.OpenOptions = File.OpenOptions.append, charset: Charset = File.defaultCharset): this.type = {
Files.write(path, lines.asJava, charset, openOptions: _*)
this
}
def appendLine(line: String = "")(implicit openOptions: File.OpenOptions = File.OpenOptions.append, charset: Charset = File.defaultCharset): this.type =
appendLines(line)(openOptions, charset)
def append(text: String)(implicit openOptions: File.OpenOptions = File.OpenOptions.append, charset: Charset = File.defaultCharset): this.type =
appendByteArray(text.getBytes(charset))(openOptions)
def appendText(text: String)(implicit openOptions: File.OpenOptions = File.OpenOptions.append, charset: Charset = File.defaultCharset): this.type =
append(text)(openOptions, charset)
def appendByteArray(bytes: Array[Byte])(implicit openOptions: File.OpenOptions = File.OpenOptions.append): this.type = {
Files.write(path, bytes, openOptions: _*)
this
}
def appendBytes(bytes: Iterator[Byte])(implicit openOptions: File.OpenOptions = File.OpenOptions.append): this.type =
writeBytes(bytes)(openOptions)
/**
* Write byte array to file. For large contents consider using the writeBytes
*
* @param bytes
* @return this
*/
def writeByteArray(bytes: Array[Byte])(implicit openOptions: File.OpenOptions = File.OpenOptions.default): this.type = {
Files.write(path, bytes, openOptions: _*)
this
}
def writeBytes(bytes: Iterator[Byte])(implicit openOptions: File.OpenOptions = File.OpenOptions.default): this.type = {
outputStream(openOptions).foreach(_.buffered write bytes)
this
}
def write(text: String)(implicit openOptions: File.OpenOptions = File.OpenOptions.default, charset: Charset = File.defaultCharset): this.type =
writeByteArray(text.getBytes(charset))(openOptions)
def writeText(text: String)(implicit openOptions: File.OpenOptions = File.OpenOptions.default, charset: Charset = File.defaultCharset): this.type =
write(text)(openOptions, charset)
def overwrite(text: String)(implicit openOptions: File.OpenOptions = File.OpenOptions.default, charset: Charset = File.defaultCharset): this.type =
write(text)(openOptions, charset)
def newRandomAccess(mode: File.RandomAccessMode = File.RandomAccessMode.read): RandomAccessFile =
new RandomAccessFile(toJava, mode.value)
def randomAccess(mode: File.RandomAccessMode = File.RandomAccessMode.read): ManagedResource[RandomAccessFile] =
newRandomAccess(mode).autoClosed //TODO: Mode enum?
def newBufferedReader(implicit charset: Charset = File.defaultCharset): BufferedReader =
Files.newBufferedReader(path, charset)
def bufferedReader(implicit charset: Charset = File.defaultCharset): ManagedResource[BufferedReader] =
newBufferedReader(charset).autoClosed
def newBufferedWriter(implicit charset: Charset = File.defaultCharset, openOptions: File.OpenOptions = File.OpenOptions.default): BufferedWriter =
Files.newBufferedWriter(path, charset, openOptions: _*)
def bufferedWriter(implicit charset: Charset = File.defaultCharset, openOptions: File.OpenOptions = File.OpenOptions.default): ManagedResource[BufferedWriter] =
newBufferedWriter(charset, openOptions).autoClosed
def newFileReader: FileReader =
new FileReader(toJava)
def fileReader: ManagedResource[FileReader] =
newFileReader.autoClosed
def newFileWriter(append: Boolean = false): FileWriter =
new FileWriter(toJava, append)
def fileWriter(append: Boolean = false): ManagedResource[FileWriter] =
newFileWriter(append).autoClosed
def newPrintWriter(autoFlush: Boolean = false)(implicit openOptions: File.OpenOptions = File.OpenOptions.default): PrintWriter =
new PrintWriter(newOutputStream(openOptions), autoFlush)
def printWriter(autoFlush: Boolean = false)(implicit openOptions: File.OpenOptions = File.OpenOptions.default): ManagedResource[PrintWriter] =
newPrintWriter(autoFlush)(openOptions).autoClosed
def newInputStream(implicit openOptions: File.OpenOptions = File.OpenOptions.default): InputStream =
Files.newInputStream(path, openOptions: _*)
def inputStream(implicit openOptions: File.OpenOptions = File.OpenOptions.default): ManagedResource[InputStream] =
newInputStream(openOptions).autoClosed
def newDigestInputStream(digest: MessageDigest)(implicit openOptions: File.OpenOptions = File.OpenOptions.default): DigestInputStream =
new DigestInputStream(newInputStream(openOptions), digest)
def digestInputStream(digest: MessageDigest)(implicit openOptions: File.OpenOptions = File.OpenOptions.default): ManagedResource[DigestInputStream] =
newDigestInputStream(digest)(openOptions).autoClosed
def newScanner(implicit config: Scanner.Config = Scanner.Config.default): Scanner =
Scanner(newBufferedReader(config.charset))(config)
def scanner(implicit config: Scanner.Config = Scanner.Config.default): ManagedResource[Scanner] =
newScanner(config).autoClosed
def newOutputStream(implicit openOptions: File.OpenOptions = File.OpenOptions.default): OutputStream =
Files.newOutputStream(path, openOptions: _*)
def outputStream(implicit openOptions: File.OpenOptions = File.OpenOptions.default): ManagedResource[OutputStream] =
newOutputStream(openOptions).autoClosed
def newZipOutputStream(implicit openOptions: File.OpenOptions = File.OpenOptions.default, charset: Charset = File.defaultCharset): ZipOutputStream =
new ZipOutputStream(newOutputStream, charset)
def zipOutputStream(implicit openOptions: File.OpenOptions = File.OpenOptions.default, charset: Charset = File.defaultCharset): ManagedResource[ZipOutputStream] =
newZipOutputStream(openOptions, charset).autoClosed
def newFileChannel(implicit openOptions: File.OpenOptions = File.OpenOptions.default, attributes: File.Attributes = File.Attributes.default): FileChannel =
FileChannel.open(path, openOptions.toSet.asJava, attributes: _*)
def fileChannel(implicit openOptions: File.OpenOptions = File.OpenOptions.default, attributes: File.Attributes = File.Attributes.default): ManagedResource[FileChannel] =
newFileChannel(openOptions, attributes).autoClosed
def newAsynchronousFileChannel(implicit openOptions: File.OpenOptions = File.OpenOptions.default): AsynchronousFileChannel =
AsynchronousFileChannel.open(path, openOptions: _*)
def asynchronousFileChannel(implicit openOptions: File.OpenOptions = File.OpenOptions.default): ManagedResource[AsynchronousFileChannel] =
newAsynchronousFileChannel(openOptions).autoClosed
def newWatchService: WatchService =
fileSystem.newWatchService()
def watchService: ManagedResource[WatchService] =
newWatchService.autoClosed
def register(service: WatchService, events: File.Events = File.Events.all): this.type = {
path.register(service, events.toArray)
this
}
def digest(algorithm: MessageDigest): Array[Byte] = {
listRelativePaths.toSeq.sorted foreach { relativePath =>
val file: File = path.resolve(relativePath)
if(file.isDirectory) {
algorithm.update(relativePath.toString.getBytes)
} else {
file.digestInputStream(algorithm).foreach(_.pipeTo(NullOutputStream))
}
}
algorithm.digest()
}
/**
* Set a file attribute e.g. file("dos:system") = true
*
* @param attribute
* @param value
* @param linkOptions
* @return
*/
def update(attribute: String, value: Any)(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): this.type = {
Files.setAttribute(path, attribute, value, linkOptions : _*)
this
}
/**
* @return checksum of this file (or directory) in hex format
*/
def checksum(algorithm: MessageDigest): String =
DatatypeConverter.printHexBinary(digest(algorithm))
def md5: String =
checksum("MD5")
def sha1: String =
checksum("SHA-1")
def sha256: String =
checksum("SHA-256")
def sha512: String =
checksum("SHA-512")
/**
* @return Some(target) if this is a symbolic link (to target) else None
*/
def symbolicLink: Option[File] =
when(isSymbolicLink)(new File(Files.readSymbolicLink(path)))
/**
* @return true if this file (or the file found by following symlink) is a directory
*/
def isDirectory(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): Boolean =
Files.isDirectory(path, linkOptions: _*)
/**
* @return true if this file (or the file found by following symlink) is a regular file
*/
def isRegularFile(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): Boolean =
Files.isRegularFile(path, linkOptions: _*)
def isSymbolicLink: Boolean =
Files.isSymbolicLink(path)
def isHidden: Boolean =
Files.isHidden(path)
def isLocked(mode: File.RandomAccessMode, position: Long = 0L, size: Long = Long.MaxValue, isShared: Boolean = false): Boolean =
try {
usingLock(mode) {channel =>
channel.tryLock(position, size, isShared).release()
false
}
} catch {
case _: OverlappingFileLockException | _: NonWritableChannelException | _: NonReadableChannelException => true
}
def usingLock[U](mode: File.RandomAccessMode)(f: FileChannel => U): U =
using(newRandomAccess(mode).getChannel)(f)
def isReadLocked(position: Long = 0L, size: Long = Long.MaxValue, isShared: Boolean = false) =
isLocked(File.RandomAccessMode.read, position, size, isShared)
def isWriteLocked(position: Long = 0L, size: Long = Long.MaxValue, isShared: Boolean = false) =
isLocked(File.RandomAccessMode.readWrite, position, size, isShared)
def list: Files =
Files.list(path)
def children: Files = list
def entries: Files = list
def listRecursively(implicit visitOptions: File.VisitOptions = File.VisitOptions.default): Files =
walk()(visitOptions).filterNot(isSamePathAs)
/**
* Walk the directory tree recursively upto maxDepth
*
* @param maxDepth
* @return List of children in BFS maxDepth level deep (includes self since self is at depth = 0)
*/
def walk(maxDepth: Int = Int.MaxValue)(implicit visitOptions: File.VisitOptions = File.VisitOptions.default): Files =
Files.walk(path, maxDepth, visitOptions: _*) //TODO: that ignores I/O errors?
def pathMatcher(syntax: File.PathMatcherSyntax, includePath: Boolean)(pattern: String): PathMatcher =
syntax(this, pattern, includePath)
/**
* Util to glob from this file's path
*
*
* @param includePath If true, we don't need to set path glob patterns
* e.g. instead of **//*.txt we just use *.txt
* @return Set of files that matched
*/
def glob(pattern: String, includePath: Boolean = true)(implicit syntax: File.PathMatcherSyntax = File.PathMatcherSyntax.default, visitOptions: File.VisitOptions = File.VisitOptions.default): Files =
pathMatcher(syntax, includePath)(pattern).matches(this)(visitOptions)
/**
* More Scala friendly way of doing Files.walk
* Note: This is lazy (returns an Iterator) and won't evaluate till we reify the iterator (e.g. using .toList)
*
* @param matchFilter
* @return
*/
def collectChildren(matchFilter: File => Boolean)(implicit visitOptions: File.VisitOptions = File.VisitOptions.default): Files =
walk()(visitOptions).filter(matchFilter)
def fileSystem: FileSystem =
path.getFileSystem
def uri: URI =
path.toUri
def url: URL =
uri.toURL
/**
* @return file size (for directories, return size of the directory) in bytes
*/
def size(implicit visitOptions: File.VisitOptions = File.VisitOptions.default): Long =
walk()(visitOptions).map(f => Files.size(f.path)).sum
def permissions(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): Set[PosixFilePermission] =
Files.getPosixFilePermissions(path, linkOptions: _*).asScala.toSet
def permissionsAsString(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): String =
PosixFilePermissions.toString(permissions(linkOptions).asJava)
def setPermissions(permissions: Set[PosixFilePermission]): this.type = {
Files.setPosixFilePermissions(path, permissions.asJava)
this
}
def addPermission(permission: PosixFilePermission)(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): this.type =
setPermissions(permissions(linkOptions) + permission)
def removePermission(permission: PosixFilePermission)(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): this.type =
setPermissions(permissions(linkOptions) - permission)
/**
* test if file has this permission
*/
def testPermission(permission: PosixFilePermission)(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): Boolean =
permissions(linkOptions)(permission)
def isOwnerReadable(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): Boolean =
testPermission(PosixFilePermission.OWNER_READ)(linkOptions)
def isOwnerWritable(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): Boolean =
testPermission(PosixFilePermission.OWNER_WRITE)(linkOptions)
def isOwnerExecutable(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): Boolean =
testPermission(PosixFilePermission.OWNER_EXECUTE)(linkOptions)
def isGroupReadable(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): Boolean =
testPermission(PosixFilePermission.GROUP_READ)(linkOptions)
def isGroupWritable(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): Boolean =
testPermission(PosixFilePermission.GROUP_WRITE)(linkOptions)
def isGroupExecutable(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): Boolean =
testPermission(PosixFilePermission.GROUP_EXECUTE)(linkOptions)
def isOtherReadable(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): Boolean =
testPermission(PosixFilePermission.OTHERS_READ)(linkOptions)
def isOtherWritable(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): Boolean =
testPermission(PosixFilePermission.OTHERS_WRITE)(linkOptions)
def isOtherExecutable(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): Boolean =
testPermission(PosixFilePermission.OTHERS_EXECUTE)(linkOptions)
/**
* This differs from the above as this checks if the JVM can read this file even though the OS cannot in certain platforms
*
* @see isOwnerReadable
* @return
*/
def isReadable: Boolean =
toJava.canRead
def isWriteable: Boolean =
toJava.canWrite
def isExecutable: Boolean =
toJava.canExecute
def attributes(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): BasicFileAttributes =
Files.readAttributes(path, classOf[BasicFileAttributes], linkOptions: _*)
def posixAttributes(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): PosixFileAttributes =
Files.readAttributes(path, classOf[PosixFileAttributes], linkOptions: _*)
def dosAttributes(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): DosFileAttributes =
Files.readAttributes(path, classOf[DosFileAttributes], linkOptions: _*)
def owner(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): UserPrincipal =
Files.getOwner(path, linkOptions: _*)
def ownerName(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): String =
owner(linkOptions).getName
def group(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): GroupPrincipal =
posixAttributes(linkOptions).group()
def groupName(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): String =
group(linkOptions).getName
def setOwner(owner: String): this.type = {
Files.setOwner(path, fileSystem.getUserPrincipalLookupService.lookupPrincipalByName(owner))
this
}
def setGroup(group: String): this.type = {
Files.setOwner(path, fileSystem.getUserPrincipalLookupService.lookupPrincipalByGroupName(group))
this
}
/**
* Similar to the UNIX command touch - create this file if it does not exist and set its last modification time
*/
def touch(time: Instant = Instant.now())(implicit attributes: File.Attributes = File.Attributes.default, linkOptions: File.LinkOptions = File.LinkOptions.default): this.type = {
Files.setLastModifiedTime(createIfNotExists()(attributes, linkOptions).path, FileTime.from(time))
this
}
def lastModifiedTime(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): Instant =
Files.getLastModifiedTime(path, linkOptions: _*).toInstant
/**
* Deletes this file or directory
*
* @param swallowIOExceptions If this is set to true, any exception thrown is swallowed
*/
def delete(swallowIOExceptions: Boolean = false): this.type = {
try {
if (isDirectory) list.foreach(_.delete(swallowIOExceptions))
Files.delete(path)
} catch {
case e: IOException if swallowIOExceptions => //e.printStackTrace() //swallow
}
this
}
def renameTo(newName: String): File =
moveTo(path.resolveSibling(newName))
/**
*
* @param destination
* @param overwrite
* @return destination
*/
def moveTo(destination: File, overwrite: Boolean = false): destination.type = {
Files.move(path, destination.path, File.CopyOptions(overwrite): _*)
destination
}
/**
*
* @param destination
* @param overwrite
* @return destination
*/
def copyTo(destination: File, overwrite: Boolean = false)(implicit copyOptions: File.CopyOptions = File.CopyOptions(overwrite)): destination.type = {
if (isDirectory) {//TODO: maxDepth?
if (overwrite) destination.delete(swallowIOExceptions = true)
Files.walkFileTree(path, new SimpleFileVisitor[Path] {
def newPath(subPath: Path): Path = destination.path.resolve(path.relativize(subPath))
override def preVisitDirectory(dir: Path, attrs: BasicFileAttributes) = {
Files.createDirectories(newPath(dir))
super.preVisitDirectory(dir, attrs)
}
override def visitFile(file: Path, attrs: BasicFileAttributes) = {
Files.copy(file, newPath(file), copyOptions: _*)
super.visitFile(file, attrs)
}
})
} else {
Files.copy(path, destination.path, copyOptions: _*)
}
destination
}
def symbolicLinkTo(destination: File)(implicit attributes: File.Attributes = File.Attributes.default): destination.type = {
Files.createSymbolicLink(path, destination.path, attributes: _*)
destination
}
def linkTo(destination: File, symbolic: Boolean = false)(implicit attributes: File.Attributes = File.Attributes.default): destination.type = {
if (symbolic) {
symbolicLinkTo(destination)(attributes)
} else {
Files.createLink(destination.path, path)
destination
}
}
def listRelativePaths(implicit visitOptions: File.VisitOptions = File.VisitOptions.default): Iterator[Path] =
walk()(visitOptions).map(relativize)
def relativize(destination: File): Path =
path.relativize(destination.path)
def isSamePathAs(that: File): Boolean =
this.path == that.path
def isSameFileAs(that: File): Boolean =
Files.isSameFile(this.path, that.path)
/**
* @return true if this file is exactly same as that file
* For directories, it checks for equivalent directory structure
*/
def isSameContentAs(that: File): Boolean =
isSimilarContentAs(that)
/**
* Almost same as isSameContentAs but uses faster md5 hashing to compare (and thus small chance of false positive)
* Also works for directories
*
* @param that
* @return
*/
def isSimilarContentAs(that: File): Boolean =
this.md5 == that.md5
override def equals(obj: Any) = {
obj match {
case file: File => isSamePathAs(file)
case _ => false
}
}
/**
* @param linkOptions
* @return true if file is not present or empty directory or 0-bytes file
*/
def isEmpty(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): Boolean = {
if (isDirectory(linkOptions)) {
children.isEmpty
} else if (isRegularFile(linkOptions)) {
toJava.length() == 0
} else {
notExists(linkOptions)
}
}
/**
*
* @param linkOptions
* @return for directories, true if it has no children, false otherwise
* for files, true if it is a 0-byte file, false otherwise
* else true if it exists, false otherwise
*/
def nonEmpty(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): Boolean =
!isEmpty(linkOptions)
/**
* If this is a directory, remove all its children
* If its a file, empty the contents
*
* @return this
*/
def clear()(implicit linkOptions: File.LinkOptions = File.LinkOptions.default): this.type = {
if (isDirectory(linkOptions)) {
children.foreach(_.delete())
} else {
writeByteArray(Array.emptyByteArray)(File.OpenOptions.default)
}
this
}
def deleteOnExit(): this.type = {
toJava.deleteOnExit()
this
}
override def hashCode =
path.hashCode()
override def toString =
pathAsString
/**
* Zips this file (or directory)
*
* @param destination The destination file; Creates this if it does not exists
* @return The destination zip file
*/
def zipTo(destination: File, compressionLevel: Int = Deflater.DEFAULT_COMPRESSION)(implicit charset: Charset = File.defaultCharset): destination.type = {
val files = if (isDirectory) children else Iterator(this)
destination.zipIn(files, compressionLevel)(charset)
}
/**
* zip to a temp directory
*
* @return the target directory
*/
def zip(compressionLevel: Int = Deflater.DEFAULT_COMPRESSION)(implicit charset: Charset = File.defaultCharset): File =
zipTo(destination = File.newTemporaryFile(name, ".zip"), compressionLevel)(charset)
/**
* Unzips this zip file
*
* @param destination destination folder; Creates this if it does not exist
* @param zipFilter An optional param to reject or accept unzipping a file
* @return The destination where contents are unzipped
*/
def unzipTo(destination: File, zipFilter: ZipEntry => Boolean = _ => true)(implicit charset: Charset = File.defaultCharset): destination.type = {
for {
zipFile <- new ZipFile(toJava, charset).autoClosed
entry <- zipFile.entries().asScala if zipFilter(entry)
file = destination.createChild(entry.getName, asDirectory = entry.isDirectory, createParents = true)
if !entry.isDirectory
} zipFile.getInputStream(entry) > file.newOutputStream
destination
}
/**
* Adds these files into this zip file
* Example usage: File("test.zip").zipIn(Seq(file"hello.txt", file"hello2.txt"))
*
* @param files
* @param compressionLevel
* @param charset
* @return this
*/
def zipIn(files: Files, compressionLevel: Int = Deflater.DEFAULT_COMPRESSION)(charset: Charset = File.defaultCharset): this.type = {
for {
output <- newZipOutputStream(File.OpenOptions.default, charset).withCompressionLevel(compressionLevel).autoClosed
input <- files
file <- input.walk()
name = input.parent relativize file
} output.add(file, name.toString)
this
}
/**
* unzip to a temporary zip file
*
* @return the zip file
*/
def unzip(zipFilter: ZipEntry => Boolean = _ => true)(implicit charset: Charset = File.defaultCharset): File =
unzipTo(destination = File.newTemporaryDirectory(name), zipFilter)(charset)
/**
* Applies the given function on this and then deletes this file
*
* @param f
* @tparam U
* @return
*/
def applyAndDelete[U](f: File => U): U =
try {
f(this)
} finally {
val _ = delete(swallowIOExceptions = true)
}
//TODO: add features from https://github.com/sbt/io
}
object File {
/**
* The default charset used by better-files
* Note: It uses java.net.charset.Charset.defaultCharset() in general but if the default supports byte-order markers,
* it uses a more compliant version than the JDK one (see: https://github.com/pathikrit/better-files/issues/107)
*/
implicit val defaultCharset: Charset =
UnicodeCharset(Charset.defaultCharset())
/**
* Get a file from a resource
* Note: Use resourceToFile instead as this may not actually always load the file
* See: http://stackoverflow.com/questions/676250/different-ways-of-loading-a-file-as-an-inputstream
*
* @param name
* @return
*/
def resource(name: String): File =
File(currentClassLoader().getResource(name))
/**
* Copies a resource into a file
*
* @param name
* @param out File where resource is copied into, if not specified a temp file is created
* @return
*/
def copyResource(name: String)(out: File = File.newTemporaryFile(prefix = name)): out.type = {
resourceAsStream(name) > out.newOutputStream
out
}
def newTemporaryDirectory(prefix: String = "", parent: Option[File] = None)(implicit attributes: Attributes = Attributes.default): File = {
parent match {
case Some(dir) => Files.createTempDirectory(dir.path, prefix, attributes: _*)
case _ => Files.createTempDirectory(prefix, attributes: _*)
}
}
def usingTemporaryDirectory[U](prefix: String = "", parent: Option[File] = None, attributes: Attributes = Attributes.default)(f: File => U): U =
newTemporaryDirectory(prefix, parent)(attributes).applyAndDelete(f)
def newTemporaryFile(prefix: String = "", suffix: String = "", parent: Option[File] = None)(implicit attributes: Attributes = Attributes.default): File = {
parent match {
case Some(dir) => Files.createTempFile(dir.path, prefix, suffix, attributes: _*)
case _ => Files.createTempFile(prefix, suffix, attributes: _*)
}
}
def usingTemporaryFile[U](prefix: String = "", suffix: String = "", parent: Option[File] = None, attributes: Attributes = Attributes.default)(f: File => U): U =
newTemporaryFile(prefix, suffix, parent)(attributes).applyAndDelete(f)
implicit def apply(path: Path): File =
new File(path.toAbsolutePath.normalize())
def apply(path: String, fragments: String*): File =
Paths.get(path, fragments: _*)
/**
* Get File to path with help of reference anchor.
*
* Anchor is used as a reference in case that path is not absolute.
* Anchor could be path to directory or path to file.
* If anchor is file, then file's parent dir is used as an anchor.
*
* If anchor itself is relative, then anchor is used together with current working directory.
*
* NOTE: If anchor is non-existing path on filesystem, then it's always treated as file,
* e.g. it's last component is removed when it is used as an anchor.
*
* @param anchor path to be used as anchor
* @param path as string
* @param fragments optional path fragments
* @return absolute, normalize path
*/
def apply(anchor: File, path: String, fragments: String*): File = {
val p = Paths.get(path, fragments: _*)
if (p.isAbsolute) {
p
} else if (anchor.isDirectory) {
anchor / p.toString
} else {
anchor.parent / p.toString
}
}
def apply(url: URL): File =
apply(url.toURI)
def apply(uri: URI): File =
Paths.get(uri)
def roots: Iterable[File] =
FileSystems.getDefault.getRootDirectories.asScala.map(File.apply)
def root: File =
roots.head
def home: File =
Properties.userHome.toFile
def temp: File =
Properties.tmpDir.toFile
def currentWorkingDirectory: File =
File("")
type Attributes = Seq[FileAttribute[_]]
object Attributes {
val default : Attributes = Seq.empty
}
type CopyOptions = Seq[CopyOption]
object CopyOptions {
def apply(overwrite: Boolean) : CopyOptions = (if (overwrite) Seq(StandardCopyOption.REPLACE_EXISTING) else default) ++ LinkOptions.default
val default : CopyOptions = Seq.empty //Seq(StandardCopyOption.COPY_ATTRIBUTES)
}
type Events = Seq[WatchEvent.Kind[_]]
object Events {
val all : Events = Seq(StandardWatchEventKinds.ENTRY_CREATE, StandardWatchEventKinds.ENTRY_MODIFY, StandardWatchEventKinds.ENTRY_DELETE)
val default : Events = all
}
type OpenOptions = Seq[OpenOption]
object OpenOptions {
val append : OpenOptions = Seq(StandardOpenOption.APPEND, StandardOpenOption.CREATE)
val default : OpenOptions = Seq.empty
}
type LinkOptions = Seq[LinkOption]
object LinkOptions {
val follow : LinkOptions = Seq.empty
val noFollow : LinkOptions = Seq(LinkOption.NOFOLLOW_LINKS)
val default : LinkOptions = follow
}
type VisitOptions = Seq[FileVisitOption]
object VisitOptions {
val follow : VisitOptions = Seq(FileVisitOption.FOLLOW_LINKS)
val default : VisitOptions = Seq.empty
}