(String path)
| 110 | } |
| 111 | |
| 112 | private void checkPath(String path) { |
| 113 | if (new File(path).isDirectory() && path.contains(" ")) { |
| 114 | print("[E] The path provided contains spaces."); |
| 115 | print("[I] Only the conversion of single files is available for paths that contain spaces."); |
| 116 | System.exit(1); |
| 117 | } |
| 118 | } |
| 119 | } |