-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFile.java
More file actions
1504 lines (1407 loc) · 55.1 KB
/
Copy pathFile.java
File metadata and controls
1504 lines (1407 loc) · 55.1 KB
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
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// BEGIN android-note
// We've dropped Windows support, except where it's exposed: we still support
// non-Unix separators in serialized File objects, for example, but we don't
// have any code for UNC paths or case-insensitivity.
// We've also changed the JNI interface to better match what the Java actually wants.
// (The JNI implementation is also much simpler.)
// Some methods have been rewritten to reduce unnecessary allocation.
// Some duplication has been factored out.
// END android-note
package java.io;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import java.security.AccessController;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import org.apache.harmony.luni.util.DeleteOnExit;
import org.apache.harmony.luni.util.PriviAction;
/**
* An "abstract" representation of a file system entity identified by a
* pathname. The pathname may be absolute (relative to the root directory
* of the file system) or relative to the current directory in which the program
* is running.
* <p>
* The actual file referenced by a {@code File} may or may not exist. It may
* also, despite the name {@code File}, be a directory or other non-regular
* file.
* <p>
* This class provides limited functionality for getting/setting file
* permissions, file type, and last modified time.
* <p>
* Although Java doesn't specify a character encoding for filenames, on Android
* Java strings are converted to UTF-8 byte sequences when sending filenames to
* the operating system, and byte sequences returned by the operating system
* (from the various {@code list} methods) are converted to Java strings by
* decoding them as UTF-8 byte sequences.
*
* @see java.io.Serializable
* @see java.lang.Comparable
*/
public class File implements Serializable, Comparable<File> {
private static final long serialVersionUID = 301077366599181567L;
/**
* The system-dependent character used to separate components in filenames ('/').
* Use of this (rather than hard-coding '/') helps portability to other operating systems.
*
* <p>This field is initialized from the system property "file.separator".
* Later changes to that property will have no effect on this field or this class.
*/
public static final char separatorChar;
/**
* The system-dependent string used to separate components in filenames ('/').
* See {@link #separatorChar}.
*/
public static final String separator;
/**
* The system-dependent character used to separate components in search paths (':').
* This is used to split such things as the PATH environment variable and classpath
* system properties into lists of directories to be searched.
*
* <p>This field is initialized from the system property "path.separator".
* Later changes to that property will have no effect on this field or this class.
*/
public static final char pathSeparatorChar;
/**
* The system-dependent string used to separate components in search paths (":").
* See {@link #pathSeparatorChar}.
*/
public static final String pathSeparator;
/**
* The path we return from getPath. This is almost the path we were
* given, but without duplicate adjacent slashes and without trailing
* slashes (except for the special case of the root directory). This
* path may be the empty string.
*/
private String path;
/**
* The path we return from getAbsolutePath, and pass down to native code.
*/
private String absolutePath;
static {
// The default protection domain grants access to these properties.
separatorChar = System.getProperty("file.separator", "/").charAt(0);
pathSeparatorChar = System.getProperty("path.separator", ":").charAt(0);
separator = String.valueOf(separatorChar);
pathSeparator = String.valueOf(pathSeparatorChar);
}
/**
* Constructs a new file using the specified directory and name.
*
* @param dir
* the directory where the file is stored.
* @param name
* the file's name.
* @throws NullPointerException
* if {@code name} is {@code null}.
*/
public File(File dir, String name) {
this(dir == null ? null : dir.getPath(), name);
}
/**
* Constructs a new file using the specified path.
*
* @param path
* the path to be used for the file.
*/
public File(String path) {
init(path);
}
/**
* Constructs a new File using the specified directory path and file name,
* placing a path separator between the two.
*
* @param dirPath
* the path to the directory where the file is stored.
* @param name
* the file's name.
* @throws NullPointerException
* if {@code name} is {@code null}.
*/
public File(String dirPath, String name) {
if (name == null) {
throw new NullPointerException();
}
if (dirPath == null || dirPath.isEmpty()) {
init(name);
} else if (name.isEmpty()) {
init(dirPath);
} else {
init(join(dirPath, name));
}
}
/**
* Constructs a new File using the path of the specified URI. {@code uri}
* needs to be an absolute and hierarchical Unified Resource Identifier with
* file scheme and non-empty path component, but with undefined authority,
* query or fragment components.
*
* @param uri
* the Unified Resource Identifier that is used to construct this
* file.
* @throws IllegalArgumentException
* if {@code uri} does not comply with the conditions above.
* @see #toURI
* @see java.net.URI
*/
public File(URI uri) {
// check pre-conditions
checkURI(uri);
init(uri.getPath());
}
private void init(String dirtyPath) {
// Cache the path and the absolute path.
// We can't call isAbsolute() here (http://b/2486943).
String cleanPath = fixSlashes(dirtyPath);
boolean isAbsolute = cleanPath.length() > 0 && cleanPath.charAt(0) == separatorChar;
if (isAbsolute) {
this.path = this.absolutePath = cleanPath;
} else {
String userDir = AccessController.doPrivileged(new PriviAction<String>("user.dir"));
this.absolutePath = cleanPath.isEmpty() ? userDir : join(userDir, cleanPath);
// We want path to be equal to cleanPath, but we'd like to reuse absolutePath's char[].
this.path = absolutePath.substring(absolutePath.length() - cleanPath.length());
}
}
// Removes duplicate adjacent slashes and any trailing slash.
private String fixSlashes(String origPath) {
// Remove duplicate adjacent slashes.
boolean lastWasSlash = false;
char[] newPath = origPath.toCharArray();
int length = newPath.length;
int newLength = 0;
for (int i = 0; i < length; ++i) {
char ch = newPath[i];
if (ch == '/') {
if (!lastWasSlash) {
newPath[newLength++] = separatorChar;
lastWasSlash = true;
}
} else {
newPath[newLength++] = ch;
lastWasSlash = false;
}
}
// Remove any trailing slash (unless this is the root of the file system).
if (lastWasSlash && newLength > 1) {
newLength--;
}
// Reuse the original string if possible.
return (newLength != length) ? new String(newPath, 0, newLength) : origPath;
}
// Joins two path components, adding a separator only if necessary.
private String join(String prefix, String suffix) {
int prefixLength = prefix.length();
boolean haveSlash = (prefixLength > 0 && prefix.charAt(prefixLength - 1) == separatorChar);
if (!haveSlash) {
haveSlash = (suffix.length() > 0 && suffix.charAt(0) == separatorChar);
}
return haveSlash ? (prefix + suffix) : (prefix + separatorChar + suffix);
}
private void checkURI(URI uri) {
if (!uri.isAbsolute()) {
throw new IllegalArgumentException("URI is not absolute: " + uri);
} else if (!uri.getRawSchemeSpecificPart().startsWith("/")) {
throw new IllegalArgumentException("URI is not hierarchical: " + uri);
}
if (!"file".equals(uri.getScheme())) {
throw new IllegalArgumentException("Expected file scheme in URI: " + uri);
}
String rawPath = uri.getRawPath();
if (rawPath == null || rawPath.isEmpty()) {
throw new IllegalArgumentException("Expected non-empty path in URI: " + uri);
}
if (uri.getRawAuthority() != null) {
throw new IllegalArgumentException("Found authority in URI: " + uri);
}
if (uri.getRawQuery() != null) {
throw new IllegalArgumentException("Found query in URI: " + uri);
}
if (uri.getRawFragment() != null) {
throw new IllegalArgumentException("Found fragment in URI: " + uri);
}
}
/**
* Lists the file system roots. The Java platform may support zero or more
* file systems, each with its own platform-dependent root. Further, the
* canonical pathname of any file on the system will always begin with one
* of the returned file system roots.
*
* @return the array of file system roots.
*/
public static File[] listRoots() {
return new File[] { new File("/") };
}
/**
* Tests whether or not this process is allowed to execute this file.
* Note that this is a best-effort result; the only way to be certain is
* to actually attempt the operation.
*
* @return {@code true} if this file can be executed, {@code false} otherwise.
* @throws SecurityException
* If a security manager exists and
* SecurityManager.checkExec(java.lang.String) disallows read
* permission to this file object
* @see java.lang.SecurityManager#checkExec(String)
*
* @since 1.6
*/
public boolean canExecute() {
if (path.isEmpty()) {
return false;
}
SecurityManager security = System.getSecurityManager();
if (security != null) {
security.checkExec(path); // Seems bogus, but this is what the RI does.
}
return canExecuteImpl(absolutePath);
}
private static native boolean canExecuteImpl(String path);
/**
* Indicates whether the current context is allowed to read from this file.
*
* @return {@code true} if this file can be read, {@code false} otherwise.
* @throws SecurityException
* if a {@code SecurityManager} is installed and it denies the
* read request.
*/
public boolean canRead() {
if (path.isEmpty()) {
return false;
}
SecurityManager security = System.getSecurityManager();
if (security != null) {
security.checkRead(path);
}
return canReadImpl(absolutePath);
}
private static native boolean canReadImpl(String path);
/**
* Indicates whether the current context is allowed to write to this file.
*
* @return {@code true} if this file can be written, {@code false}
* otherwise.
* @throws SecurityException
* if a {@code SecurityManager} is installed and it denies the
* write request.
*/
public boolean canWrite() {
if (path.isEmpty()) {
return false;
}
SecurityManager security = System.getSecurityManager();
if (security != null) {
security.checkWrite(path);
}
return canWriteImpl(absolutePath);
}
private static native boolean canWriteImpl(String path);
/**
* Returns the relative sort ordering of the paths for this file and the
* file {@code another}. The ordering is platform dependent.
*
* @param another
* a file to compare this file to
* @return an int determined by comparing the two paths. Possible values are
* described in the Comparable interface.
* @see Comparable
*/
public int compareTo(File another) {
return this.getPath().compareTo(another.getPath());
}
/**
* Deletes this file. Directories must be empty before they will be deleted.
*
* <p>Note that this method does <i>not</i> throw {@code IOException} on failure.
* Callers must check the return value.
*
* @return {@code true} if this file was deleted, {@code false} otherwise.
* @throws SecurityException
* if a {@code SecurityManager} is installed and it denies the
* request.
* @see java.lang.SecurityManager#checkDelete
*/
public boolean delete() {
if (path.isEmpty()) {
return false;
}
SecurityManager security = System.getSecurityManager();
if (security != null) {
security.checkDelete(path);
}
return deleteImpl(absolutePath);
}
private static native boolean deleteImpl(String path);
/**
* Schedules this file to be automatically deleted once the virtual machine
* terminates. This will only happen when the virtual machine terminates
* normally as described by the Java Language Specification section 12.9.
*
* @throws SecurityException
* if a {@code SecurityManager} is installed and it denies the
* request.
*/
public void deleteOnExit() {
SecurityManager security = System.getSecurityManager();
if (security != null) {
security.checkDelete(path);
}
DeleteOnExit.getInstance().addFile(getAbsoluteName());
}
/**
* Compares {@code obj} to this file and returns {@code true} if they
* represent the <em>same</em> object using a path specific comparison.
*
* @param obj
* the object to compare this file with.
* @return {@code true} if {@code obj} is the same as this object,
* {@code false} otherwise.
*/
@Override
public boolean equals(Object obj) {
if (!(obj instanceof File)) {
return false;
}
return path.equals(((File) obj).getPath());
}
/**
* Returns a boolean indicating whether this file can be found on the
* underlying file system.
*
* @return {@code true} if this file exists, {@code false} otherwise.
* @throws SecurityException
* if a {@code SecurityManager} is installed and it denies read
* access to this file.
* @see #getPath
* @see java.lang.SecurityManager#checkRead(FileDescriptor)
*/
public boolean exists() {
if (path.isEmpty()) {
return false;
}
SecurityManager security = System.getSecurityManager();
if (security != null) {
security.checkRead(path);
}
return existsImpl(absolutePath);
}
private static native boolean existsImpl(String path);
/**
* Returns the absolute path of this file.
*
* @return the absolute file path.
*/
public String getAbsolutePath() {
return absolutePath;
}
/**
* Returns a new file constructed using the absolute path of this file.
*
* @return a new file from this file's absolute path.
* @see java.lang.SecurityManager#checkPropertyAccess
*/
public File getAbsoluteFile() {
return new File(this.getAbsolutePath());
}
/**
* Returns the absolute path of this file with all references resolved. An
* <em>absolute</em> path is one that begins at the root of the file
* system. The canonical path is one in which all references have been
* resolved. For the cases of '..' and '.', where the file system supports
* parent and working directory respectively, these are removed and replaced
* with a direct directory reference. If the file does not exist,
* getCanonicalPath() may not resolve any references and simply returns an
* absolute path name or throws an IOException.
*
* @return the canonical path of this file.
* @throws IOException
* if an I/O error occurs.
*/
public String getCanonicalPath() throws IOException {
// BEGIN android-removed
// Caching the canonical path is bogus. Users facing specific
// performance problems can perform their own caching, with
// eviction strategies that are appropriate for their application.
// A VM-wide cache with no mechanism to evict stale elements is a
// disservice to applications that need up-to-date data.
// String canonPath = FileCanonPathCache.get(absPath);
// if (canonPath != null) {
// return canonPath;
// }
// END android-removed
// TODO: rewrite getCanonicalPath, resolve, and resolveLink.
String result = absolutePath;
if (separatorChar == '/') {
// resolve the full path first
result = resolveLink(result, result.length(), false);
// resolve the parent directories
result = resolve(result);
}
int numSeparators = 1;
for (int i = 0; i < result.length(); ++i) {
if (result.charAt(i) == separatorChar) {
numSeparators++;
}
}
int[] sepLocations = new int[numSeparators];
int rootLoc = 0;
if (separatorChar != '/') {
if (result.charAt(0) == '\\') {
rootLoc = (result.length() > 1 && result.charAt(1) == '\\') ? 1 : 0;
} else {
rootLoc = 2; // skip drive i.e. c:
}
}
char[] newResult = new char[result.length() + 1];
int newLength = 0, lastSlash = 0, foundDots = 0;
sepLocations[lastSlash] = rootLoc;
for (int i = 0; i <= result.length(); ++i) {
if (i < rootLoc) {
newResult[newLength++] = result.charAt(i);
} else {
if (i == result.length() || result.charAt(i) == separatorChar) {
if (i == result.length() && foundDots == 0) {
break;
}
if (foundDots == 1) {
/* Don't write anything, just reset and continue */
foundDots = 0;
continue;
}
if (foundDots > 1) {
/* Go back N levels */
lastSlash = lastSlash > (foundDots - 1) ? lastSlash - (foundDots - 1) : 0;
newLength = sepLocations[lastSlash] + 1;
foundDots = 0;
continue;
}
sepLocations[++lastSlash] = newLength;
newResult[newLength++] = separatorChar;
continue;
}
if (result.charAt(i) == '.') {
foundDots++;
continue;
}
/* Found some dots within text, write them out */
if (foundDots > 0) {
for (int j = 0; j < foundDots; j++) {
newResult[newLength++] = '.';
}
}
newResult[newLength++] = result.charAt(i);
foundDots = 0;
}
}
// remove trailing slash
if (newLength > (rootLoc + 1) && newResult[newLength - 1] == separatorChar) {
newLength--;
}
return new String(newResult, 0, newLength);
}
/*
* Resolve symbolic links in the parent directories.
*/
private static String resolve(String path) throws IOException {
int last = 1;
String linkPath = path;
String bytes;
boolean done;
for (int i = 1; i <= path.length(); i++) {
if (i == path.length() || path.charAt(i) == separatorChar) {
done = i >= path.length() - 1;
// if there is only one segment, do nothing
if (done && linkPath.length() == 1) {
return path;
}
boolean inPlace = false;
if (linkPath.equals(path)) {
bytes = path;
// if there are no symbolic links, truncate the path instead of copying
if (!done) {
inPlace = true;
path = path.substring(0, i);
}
} else {
int nextSize = i - last + 1;
int linkSize = linkPath.length();
if (linkPath.charAt(linkSize - 1) == separatorChar) {
linkSize--;
}
bytes = linkPath.substring(0, linkSize) +
path.substring(last - 1, last - 1 + nextSize);
// the full path has already been resolved
}
if (done) {
return bytes;
}
linkPath = resolveLink(bytes, inPlace ? i : bytes.length(), true);
if (inPlace) {
// path[i] = '/';
path = path.substring(0, i) + '/' + (i + 1 < path.length() ? path.substring(i + 1) : "");
}
last = i + 1;
}
}
throw new InternalError();
}
/*
* Resolve a symbolic link. While the path resolves to an existing path,
* keep resolving. If an absolute link is found, resolve the parent
* directories if resolveAbsolute is true.
*/
private static String resolveLink(String path, int length, boolean resolveAbsolute) throws IOException {
boolean restart = false;
do {
String fragment = path.substring(0, length);
String target = readlink(fragment);
if (target.equals(fragment)) {
break;
}
if (target.charAt(0) == separatorChar) {
// The link target was an absolute path, so we may need to start again.
restart = resolveAbsolute;
path = target + path.substring(length);
} else {
path = path.substring(0, path.lastIndexOf(separatorChar, length - 1) + 1) + target;
}
length = path.length();
} while (existsImpl(path));
// resolve the parent directories
if (restart) {
return resolve(path);
}
return path;
}
private static native String readlink(String filePath);
/**
* Returns a new file created using the canonical path of this file.
* Equivalent to {@code new File(this.getCanonicalPath())}.
*
* @return the new file constructed from this file's canonical path.
* @throws IOException
* if an I/O error occurs.
* @see java.lang.SecurityManager#checkPropertyAccess
*/
public File getCanonicalFile() throws IOException {
return new File(getCanonicalPath());
}
/**
* Returns the name of the file or directory represented by this file.
*
* @return this file's name or an empty string if there is no name part in
* the file's path.
*/
public String getName() {
int separatorIndex = path.lastIndexOf(separator);
return (separatorIndex < 0) ? path : path.substring(separatorIndex + 1, path.length());
}
/**
* Returns the pathname of the parent of this file. This is the path up to
* but not including the last name. {@code null} is returned if there is no
* parent.
*
* @return this file's parent pathname or {@code null}.
*/
public String getParent() {
int length = path.length(), firstInPath = 0;
if (separatorChar == '\\' && length > 2 && path.charAt(1) == ':') {
firstInPath = 2;
}
int index = path.lastIndexOf(separatorChar);
if (index == -1 && firstInPath > 0) {
index = 2;
}
if (index == -1 || path.charAt(length - 1) == separatorChar) {
return null;
}
if (path.indexOf(separatorChar) == index
&& path.charAt(firstInPath) == separatorChar) {
return path.substring(0, index + 1);
}
return path.substring(0, index);
}
/**
* Returns a new file made from the pathname of the parent of this file.
* This is the path up to but not including the last name. {@code null} is
* returned when there is no parent.
*
* @return a new file representing this file's parent or {@code null}.
*/
public File getParentFile() {
String tempParent = getParent();
if (tempParent == null) {
return null;
}
return new File(tempParent);
}
/**
* Returns the path of this file.
*
* @return this file's path.
*/
public String getPath() {
return path;
}
/**
* Returns an integer hash code for the receiver. Any two objects for which
* {@code equals} returns {@code true} must return the same hash code.
*
* @return this files's hash value.
* @see #equals
*/
@Override
public int hashCode() {
return getPath().hashCode() ^ 1234321;
}
/**
* Indicates if this file's pathname is absolute. Whether a pathname is
* absolute is platform specific. On Android, absolute paths start with
* the character '/'.
*
* @return {@code true} if this file's pathname is absolute, {@code false}
* otherwise.
* @see #getPath
*/
public boolean isAbsolute() {
return path.length() > 0 && path.charAt(0) == separatorChar;
}
/**
* Indicates if this file represents a <em>directory</em> on the
* underlying file system.
*
* @return {@code true} if this file is a directory, {@code false}
* otherwise.
* @throws SecurityException
* if a {@code SecurityManager} is installed and it denies read
* access to this file.
*/
public boolean isDirectory() {
if (path.isEmpty()) {
return false;
}
SecurityManager security = System.getSecurityManager();
if (security != null) {
security.checkRead(path);
}
return isDirectoryImpl(absolutePath);
}
private static native boolean isDirectoryImpl(String path);
/**
* Indicates if this file represents a <em>file</em> on the underlying
* file system.
*
* @return {@code true} if this file is a file, {@code false} otherwise.
* @throws SecurityException
* if a {@code SecurityManager} is installed and it denies read
* access to this file.
*/
public boolean isFile() {
if (path.isEmpty()) {
return false;
}
SecurityManager security = System.getSecurityManager();
if (security != null) {
security.checkRead(path);
}
return isFileImpl(absolutePath);
}
private static native boolean isFileImpl(String path);
/**
* Returns whether or not this file is a hidden file as defined by the
* operating system. The notion of "hidden" is system-dependent. For Unix
* systems a file is considered hidden if its name starts with a ".". For
* Windows systems there is an explicit flag in the file system for this
* purpose.
*
* @return {@code true} if the file is hidden, {@code false} otherwise.
* @throws SecurityException
* if a {@code SecurityManager} is installed and it denies read
* access to this file.
*/
public boolean isHidden() {
if (path.isEmpty()) {
return false;
}
SecurityManager security = System.getSecurityManager();
if (security != null) {
security.checkRead(path);
}
return getName().startsWith(".");
}
/**
* Returns the time when this file was last modified, measured in
* milliseconds since January 1st, 1970, midnight.
* Returns 0 if the file does not exist.
*
* @return the time when this file was last modified.
* @throws SecurityException
* if a {@code SecurityManager} is installed and it denies read
* access to this file.
*/
public long lastModified() {
if (path.isEmpty()) {
return 0;
}
SecurityManager security = System.getSecurityManager();
if (security != null) {
security.checkRead(path);
}
return lastModifiedImpl(absolutePath);
}
private static native long lastModifiedImpl(String path);
/**
* Sets the time this file was last modified, measured in milliseconds since
* January 1st, 1970, midnight.
*
* <p>Note that this method does <i>not</i> throw {@code IOException} on failure.
* Callers must check the return value.
*
* @param time
* the last modification time for this file.
* @return {@code true} if the operation is successful, {@code false}
* otherwise.
* @throws IllegalArgumentException
* if {@code time < 0}.
* @throws SecurityException
* if a {@code SecurityManager} is installed and it denies write
* access to this file.
*/
public boolean setLastModified(long time) {
if (path.isEmpty()) {
return false;
}
if (time < 0) {
throw new IllegalArgumentException("time < 0");
}
SecurityManager security = System.getSecurityManager();
if (security != null) {
security.checkWrite(path);
}
return setLastModifiedImpl(absolutePath, time);
}
private static native boolean setLastModifiedImpl(String path, long time);
/**
* Equivalent to setWritable(false, false).
*
* @see #setWritable(boolean, boolean)
*/
public boolean setReadOnly() {
return setWritable(false, false);
}
/**
* Manipulates the execute permissions for the abstract path designated by
* this file.
*
* <p>Note that this method does <i>not</i> throw {@code IOException} on failure.
* Callers must check the return value.
*
* @param executable
* To allow execute permission if true, otherwise disallow
* @param ownerOnly
* To manipulate execute permission only for owner if true,
* otherwise for everyone. The manipulation will apply to
* everyone regardless of this value if the underlying system
* does not distinguish owner and other users.
* @return true if and only if the operation succeeded. If the user does not
* have permission to change the access permissions of this abstract
* pathname the operation will fail. If the underlying file system
* does not support execute permission and the value of executable
* is false, this operation will fail.
* @throws SecurityException -
* If a security manager exists and
* SecurityManager.checkWrite(java.lang.String) disallows write
* permission to this file object
* @since 1.6
*/
public boolean setExecutable(boolean executable, boolean ownerOnly) {
if (path.isEmpty()) {
return false;
}
SecurityManager security = System.getSecurityManager();
if (security != null) {
security.checkWrite(path);
}
return setExecutableImpl(absolutePath, executable, ownerOnly);
}
/**
* Equivalent to setExecutable(executable, true).
* @see #setExecutable(boolean, boolean)
* @since 1.6
*/
public boolean setExecutable(boolean executable) {
return setExecutable(executable, true);
}
private static native boolean setExecutableImpl(String path, boolean executable, boolean ownerOnly);
/**
* Manipulates the read permissions for the abstract path designated by this
* file.
*
* @param readable
* To allow read permission if true, otherwise disallow
* @param ownerOnly
* To manipulate read permission only for owner if true,
* otherwise for everyone. The manipulation will apply to
* everyone regardless of this value if the underlying system
* does not distinguish owner and other users.
* @return true if and only if the operation succeeded. If the user does not
* have permission to change the access permissions of this abstract
* pathname the operation will fail. If the underlying file system
* does not support read permission and the value of readable is
* false, this operation will fail.
* @throws SecurityException -
* If a security manager exists and
* SecurityManager.checkWrite(java.lang.String) disallows write
* permission to this file object
* @since 1.6
*/
public boolean setReadable(boolean readable, boolean ownerOnly) {
if (path.isEmpty()) {
return false;
}
SecurityManager security = System.getSecurityManager();
if (security != null) {
security.checkWrite(path);
}
return setReadableImpl(absolutePath, readable, ownerOnly);
}
/**
* Equivalent to setReadable(readable, true).
* @see #setReadable(boolean, boolean)
* @since 1.6
*/
public boolean setReadable(boolean readable) {
return setReadable(readable, true);
}
private static native boolean setReadableImpl(String path, boolean readable, boolean ownerOnly);
/**
* Manipulates the write permissions for the abstract path designated by this
* file.
*
* @param writable
* To allow write permission if true, otherwise disallow
* @param ownerOnly
* To manipulate write permission only for owner if true,
* otherwise for everyone. The manipulation will apply to
* everyone regardless of this value if the underlying system
* does not distinguish owner and other users.
* @return true if and only if the operation succeeded. If the user does not
* have permission to change the access permissions of this abstract
* pathname the operation will fail.
* @throws SecurityException -
* If a security manager exists and
* SecurityManager.checkWrite(java.lang.String) disallows write
* permission to this file object
* @since 1.6
*/
public boolean setWritable(boolean writable, boolean ownerOnly) {
if (path.isEmpty()) {
return false;
}
SecurityManager security = System.getSecurityManager();
if (security != null) {
security.checkWrite(path);
}
return setWritableImpl(absolutePath, writable, ownerOnly);
}
/**
* Equivalent to setWritable(writable, true).
* @see #setWritable(boolean, boolean)
* @since 1.6
*/
public boolean setWritable(boolean writable) {
return setWritable(writable, true);
}
private static native boolean setWritableImpl(String path, boolean writable, boolean ownerOnly);
/**