()
| 123 | } |
| 124 | |
| 125 | public FilePath userHome() throws Exception { |
| 126 | if (userHome == null) { |
| 127 | userHome = FilePath.of(OsFileSystem.of(shellControl.getOsType()).getUserHomeDirectory(shellControl)); |
| 128 | } |
| 129 | |
| 130 | return userHome; |
| 131 | } |
| 132 | |
| 133 | public void moveFile(FilePath source, FilePath dest) throws Exception { |
| 134 | getDialect() |
no test coverage detected