Subversion Repository Public Repository

litesoft

Diff Revisions 307 vs 308 for /trunk/Java/ScarPlus/src/com/esotericsoftware/utils/IFileSystem.java

Diff revisions: vs.
  @@ -4,11 +4,14 @@
4 4
5 5 public interface IFileSystem
6 6 {
7 + public boolean isWindows();
8 +
7 9 public char separatorChar();
8 10
9 - public boolean isWindows();
11 + public String canonicalCurrentPath();
10 12
11 13 public boolean exists(String path);
12 14
13 15 public String canonicalizeNormalizedExisting(String path) throws IOException;
14 16 }
17 +