equal
deleted
inserted
replaced
4 import java.util.Date; |
4 import java.util.Date; |
5 import java.net.URI; |
5 import java.net.URI; |
6 import java.net.URISyntaxException; |
6 import java.net.URISyntaxException; |
7 |
7 |
8 public class Funkce { |
8 public class Funkce { |
9 public static Date posledníZměna(String soubor) throws URISyntaxException { |
9 public static Date posledníZměna(String soubor) throws URISyntaxException { |
10 return new Date(new File(new URI(soubor)).lastModified()); |
10 return new Date(new File(new URI(soubor)).lastModified()); |
11 } |
11 } |
12 } |
12 } |
13 |
13 |