mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-04-25 08:59:25 -04:00
Show file attributes in file explorer
This commit is contained in:
@@ -26,12 +26,15 @@ public interface FileSystem extends Closeable, AutoCloseable {
|
||||
boolean hidden;
|
||||
Boolean executable;
|
||||
long size;
|
||||
String mode;
|
||||
|
||||
public FileEntry(
|
||||
@NonNull FileSystem fileSystem, @NonNull String path, Instant date, boolean directory, boolean hidden, Boolean executable,
|
||||
long size
|
||||
long size,
|
||||
String mode
|
||||
) {
|
||||
this.fileSystem = fileSystem;
|
||||
this.mode = mode;
|
||||
this.path = directory ? FileNames.toDirectory(path) : path;
|
||||
this.date = date;
|
||||
this.directory = directory;
|
||||
|
||||
Reference in New Issue
Block a user