Advertisement
ivana_andreevska

Proverka za roditel

Feb 25th, 2022
854
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. import java.io.*;
  2. import java.io.File;
  3.  
  4. public class Main {
  5.     public static void main(String[] args) throws IOException {
  6.         File file = new File("./path2.txt");
  7.         file.createNewFile();
  8.  
  9.         if(file.exists())
  10.             System.out.println(file.getParent());
  11.  
  12.     }
  13. }
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement