Solved

Import Java.nio.file.*; Import Static Java.nio.file.AccessMode.*;

Question 14

Essay

import java.nio.file.*;
import static java.nio.file.AccessMode.*;
import java.io.IOException;
public class PathDemo3
{
  public static void main(String[] args)
  {
    Path myFile = Paths.get("C:\\Java\\Chapter.13\\Data.txt");
    System.out.println("Path is " + myFile.toString());
    try     {
      -------------- Code here -------------------
      System.out.println("File can be read and executed");     }
    catch(IOException e)
    {
       System.out.println("File cannot be used for this application");
    }
   }
}
Assuming you have declared a path named myFile , create the checkAccess() method on the indicated line that will verify that the file exists, and checks that the program can read and write to the file.

Correct Answer:

verifed

Verified

myFile.getFileSystem...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions