public class FS_Win32 extends FS
FS.Attributes, FS.ExecutionResult, FS.FileStoreAttributes, FS.FSFactory, FS.LockTokenDETECTED, 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?
|
protected File |
userHomeImpl()
Determine the user's home directory (location where preferences are).
|
createNewFile, createNewFileAtomic, createSymLink, delete, detect, detect, discoverGitSystemConfig, execute, exists, fileAttributes, findHook, getFileStoreAttributes, getGitSystemConfig, internalRunHookIfPresent, isDirectory, isFile, isHidden, isSymLink, lastModified, lastModifiedInstant, lastModifiedInstant, length, normalize, normalize, readPipe, readPipe, readSymLink, relativize, resolve, resolveGrandparentFile, runHookIfPresent, runHookIfPresent, runProcess, runProcess, searchPath, setAsyncFileStoreAttributes, setGitSystemConfig, setHidden, setLastModified, setLastModified, setUserHome, supportsAtomicCreateNewFile, supportsSymlinks, userHomepublic FS_Win32()
protected FS_Win32(FS src)
src - instance whose attributes to copypublic FS newInstance()
newInstance in class FSpublic boolean supportsExecute()
supportsExecute in class FSpublic 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 FSf - 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 FSf - path to modify the executable status of.canExec - true to enable execution; false to disable it.public boolean isCaseSensitive()
isCaseSensitive in class FSpublic boolean retryFailedLockFileCommit()
retryFailedLockFileCommit in class FSpublic WorkingTreeIterator.Entry[] list(File directory, FileTreeIterator.FileModeStrategy fileModeStrategy)
protected File discoverGitExe()
discoverGitExe in class FSnull if it cannot be
determined.protected File userHomeImpl()
userHomeImpl in class FSpublic ProcessBuilder runInShell(String cmd, String[] args)
runInShell in class FScmd - 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 FS.Attributes getAttributes(File path)
getAttributes in class FSpath - a File object.Copyright © 2020 Eclipse JGit Project. All rights reserved.