Please explain what happens when File looks properly initiated but Scanner can't adopt this File?
Create object file, it is opened, I can apply methods, read path, properties, length etc.
File file = new File("in.txt");
Next trying to create new Scanner and it throws exception file not found? How?
Scanner scan = new Scanner(file);
Utils and io library imported.