Пример #1
0
 /**
  * Returns the extension of the file.
  *
  * @return File extension, i.e. "java" for "FileSystemUtils.java", or <code>null</code>, if the
  *     file has no extension (i.e. if a filename contains no '.'), returns the empty string if the
  *     '.' is the filename's last character.
  */
 public String getExtension() {
   return FileSystemUtils.getFileExtension(this);
 }
Пример #2
0
 /**
  * 파일시스템의 여유크기를 계산한다. (GB 단위)
  *
  * @param String - 파일시스템명
  * @return int - 파일시스템 여유크기
  * @param path
  */
 public static int freeSpaceGb(String path) throws IOException {
   return (int) (FileSystemUtils.freeSpaceKb(path) / 1024 / 1024);
 }