public class FS_Win32 extends FS
FS.Attributes, FS.ExecutionResult, FS.FSFactory
DETECTED, NO_ENTRIES
Modifier | Constructor and Description |
---|---|
|
FS_Win32()
Constructor
|
protected |
FS_Win32(FS src)
Constructor
|
Modifier and Type | Method and Description |
---|---|
boolean |
canExecute(File f)
Determine if the file is executable (or not).
|
protected File |
discoverGitExe()
Discover the path to the Git executable.
|
FS.Attributes |
getAttributes(File path)
Get the file attributes we care for.
|
boolean |
isCaseSensitive()
Is this file system case sensitive
|
WorkingTreeIterator.Entry[] |
list(File directory,
FileTreeIterator.FileModeStrategy fileModeStrategy)
Enumerates children of a directory.
|
FS |
newInstance()
Create a new instance of the same type of FS.
|
boolean |
retryFailedLockFileCommit()
Does this file system have problems with atomic renames?
|
ProcessBuilder |
runInShell(String cmd,
String[] args)
Initialize a ProcessBuilder to run a command using the system shell.
|
boolean |
setExecute(File f,
boolean canExec)
Set a file to be executable by the user.
|
boolean |
supportsExecute()
Does this operating system and JRE support the execute flag on files?
|
boolean |
supportsSymlinks()
Does this operating system and JRE supports symbolic links.
|
protected File |
userHomeImpl()
Determine the user's home directory (location where preferences are).
|
createNewFile, createSymLink, delete, detect, detect, discoverGitSystemConfig, execute, exists, findHook, getGitSystemConfig, internalRunHookIfPresent, isDirectory, isFile, isHidden, isSymLink, lastModified, length, normalize, normalize, readPipe, readPipe, readSymLink, relativize, resolve, resolveGrandparentFile, runHookIfPresent, runHookIfPresent, runProcess, runProcess, searchPath, setGitSystemConfig, setHidden, setLastModified, setUserHome, supportsAtomicCreateNewFile, userHome
public FS_Win32()
protected FS_Win32(FS src)
src
- instance whose attributes to copypublic FS newInstance()
newInstance
in class FS
public boolean supportsExecute()
supportsExecute
in class FS
public boolean canExecute(File f)
Not all platforms and JREs support executable flags on files. If the feature is unsupported this method will always return false.
If the platform supports symbolic links and f
is a symbolic link
this method returns false, rather than the state of the executable flags
on the target file.
canExecute
in class FS
f
- abstract path to test.public boolean setExecute(File f, boolean canExec)
Not all platforms and JREs support executable flags on files. If the feature is unsupported this method will always return false and no changes will be made to the file specified.
setExecute
in class FS
f
- path to modify the executable status of.canExec
- true to enable execution; false to disable it.public boolean isCaseSensitive()
isCaseSensitive
in class FS
public boolean retryFailedLockFileCommit()
retryFailedLockFileCommit
in class FS
public WorkingTreeIterator.Entry[] list(File directory, FileTreeIterator.FileModeStrategy fileModeStrategy)
protected File discoverGitExe()
discoverGitExe
in class FS
null
if it cannot be
determined.protected File userHomeImpl()
userHomeImpl
in class FS
public ProcessBuilder runInShell(String cmd, String[] args)
runInShell
in class FS
cmd
- command to execute. This string should originate from the
end-user, and thus is platform specific.args
- arguments to pass to command. These should be protected from
shell evaluation.public boolean supportsSymlinks()
supportsSymlinks
in class FS
public FS.Attributes getAttributes(File path)
getAttributes
in class FS
path
- a File
object.Copyright © 2018 Eclipse JGit Project. All rights reserved.