Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

EGit/FS

< EGit
Revision as of 09:31, 27 January 2014 by Axel.richard.obeo.fr (Talk | contribs) (Created page with "= EGit FS (File System Operations) = This page lists the methods managed for org.eclipse.jgit.util.FS.java and all subclasses: * FS_Win32 * FS_Win32_Java7 * FS_Win32_Cygwin *...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

EGit FS (File System Operations)

This page lists the methods managed for org.eclipse.jgit.util.FS.java and all subclasses:

  • FS_Win32
  • FS_Win32_Java7
  • FS_Win32_Cygwin
  • FS_Win32_Java7Cygwin
  • FS_POSIX
  • FS_POSIX_Java_7
  • FS_POSIX_Java_6
  • FS_POSIX_Java_5


EGit/JGit FS FS_Win32 FS_Win32_Java7 FS_Win32_Cygwin FS_Win32_Java7Cygwin FS_POSIX FS_POSIX_Java5 FS_POSIX_Java6 FS_POSIX_Java7
canExecute(File) N/A false see FS_Win32 N/A false
createSymLinks(File, String) N/A false see FS_Win32_Cygwin see FS_POSIX see FS_POSIX
delete(File) see FS see FS see FS see FS see FS
exists(File)
getAttributes(File)
isCaseSensitive()
isDirectory(File)
isFile(File)
isHidden(File)
isSymLink(File)
lastModified(File)
length(File)
normalize(File)
normalize(String)
readSymLink(File)
resolve(File, String)
runInShell
setExecute(File, boolean)
setHidden(File, boolean)
setLastModified(File, long)
supportsExecute()
supportsSymlinks()

Back to the top