30
30
31
31
/**
32
32
* Helps use {@link FileTime} and interoperate Date and NTFS times.
33
+ * <p>
34
+ * An NTFS file time is a 64-bit value that represents the number of 100-nanosecond intervals that have elapsed since 12:00 A.M. January 1, 1601 Coordinated
35
+ * Universal Time (UTC). This is the offset of Windows time 0 to Unix epoch in 100-nanosecond intervals.
36
+ * </p>
33
37
*
34
38
* @since 2.12.0
39
+ * @see <a href="https://learn.microsoft.com/en-us/windows/win32/sysinfo/file-times">NTFS File Times</a>
35
40
*/
36
41
public final class FileTimes {
37
42
@@ -156,7 +161,7 @@ static Date ntfsTimeToDate(final BigDecimal ntfsTime) {
156
161
}
157
162
158
163
/**
159
- * Converts NTFS time (100 nanosecond units since 1 January 1601) to Java time .
164
+ * Converts an NTFS time (100 nanosecond units since 1 January 1601) to a {@link Date} .
160
165
* <p>
161
166
* An NTFS file time is a 64-bit value for the number of 100-nanosecond intervals since 12:00 A.M. January 1, 1601 Coordinated Universal Time (UTC).
162
167
* </p>
@@ -170,7 +175,7 @@ public static Date ntfsTimeToDate(final long ntfsTime) {
170
175
}
171
176
172
177
/**
173
- * Converts NTFS time (100-nanosecond units since 1 January 1601) to a FileTime.
178
+ * Converts an NTFS time (100-nanosecond units since 1 January 1601) to a {@link FileTime} .
174
179
* <p>
175
180
* An NTFS file time is a 64-bit value for the number of 100-nanosecond intervals since 12:00 A.M. January 1, 1601 Coordinated Universal Time (UTC).
176
181
* </p>
@@ -195,7 +200,7 @@ static Instant ntfsTimeToInstant(final long ntfsTime) {
195
200
}
196
201
197
202
/**
198
- * Adds milliseconds to a source FileTime.
203
+ * Adds milliseconds to a {@link FileTime} .
199
204
*
200
205
* @param fileTime The source FileTime.
201
206
* @param millisToAdd The milliseconds to add.
@@ -206,7 +211,7 @@ public static FileTime plusMillis(final FileTime fileTime, final long millisToAd
206
211
}
207
212
208
213
/**
209
- * Adds nanoseconds from a source FileTime.
214
+ * Adds nanoseconds to a {@link FileTime} .
210
215
*
211
216
* @param fileTime The source FileTime.
212
217
* @param nanosToSubtract The nanoseconds to subtract.
@@ -217,7 +222,7 @@ public static FileTime plusNanos(final FileTime fileTime, final long nanosToSubt
217
222
}
218
223
219
224
/**
220
- * Adds seconds to a source FileTime.
225
+ * Adds seconds to a {@link FileTime} .
221
226
*
222
227
* @param fileTime The source FileTime.
223
228
* @param secondsToAdd The seconds to add.
@@ -238,7 +243,7 @@ public static void setLastModifiedTime(final Path path) throws IOException {
238
243
}
239
244
240
245
/**
241
- * Converts {@link FileTime} to a {@link Date}. If the provided FileTime is {@code null}, the returned Date is also {@code null}.
246
+ * Converts a {@link FileTime} to a {@link Date}. If the provided FileTime is {@code null}, the returned Date is also {@code null}.
242
247
*
243
248
* @param fileTime the file time to be converted.
244
249
* @return a {@link Date} which corresponds to the supplied time, or {@code null} if the time is {@code null}.
@@ -249,7 +254,7 @@ public static Date toDate(final FileTime fileTime) {
249
254
}
250
255
251
256
/**
252
- * Converts {@link Date} to a {@link FileTime}. If the provided Date is {@code null}, the returned FileTime is also {@code null}.
257
+ * Converts a {@link Date} to a {@link FileTime}. If the provided Date is {@code null}, the returned FileTime is also {@code null}.
253
258
*
254
259
* @param date the date to be converted.
255
260
* @return a {@link FileTime} which corresponds to the supplied date, or {@code null} if the date is {@code null}.
@@ -293,7 +298,7 @@ static long toNtfsTime(final Instant instant) {
293
298
}
294
299
295
300
/**
296
- * Converts Java time (milliseconds since Epoch) to NTFS time.
301
+ * Converts a Java time (milliseconds since Epoch) to NTFS time.
297
302
* <p>
298
303
* An NTFS file time is a 64-bit value for the number of 100-nanosecond intervals since 12:00 A.M. January 1, 1601 Coordinated Universal Time (UTC).
299
304
* </p>
@@ -308,7 +313,7 @@ public static long toNtfsTime(final long javaTime) {
308
313
}
309
314
310
315
/**
311
- * Converts {@link FileTime} to standard Unix time in seconds.
316
+ * Converts a {@link FileTime} to standard Unix time in seconds.
312
317
* <p>
313
318
* The returned seconds value may lie out of bounds of Unix time. Check with {@link FileTimes#isUnixTime(long)}.
314
319
* </p>
0 commit comments