我正在为一堂课写一个程序。我有第一部分,但需要帮助这部分的代码:
包含上次修改的文件夹,大小和时间这些步骤是我需要帮助写入的内容。
这是挑战 1.使用任何文字处理程序或文本编辑器创建文件。编写一个显示文件名称的应用程序,其中包含上次修改的文件夹,大小和时间。
下面是我目前的代码
import java.nio.file.*;
import java.nio.file.attribute.*;
import java.io.IOException;
import static java.nio.file.AccessMode.*;
public class FileStatistics
{
public static void main(String[] args)
{
Path filePath =
Paths.get("C:\\Users\\John\\Desktop\\N Drive\\St Leo Master folder\\COM-209\\module 6\\sixtestfile.txt");
System.out.println("Path is" + filePath.toString ());
try
{
filePath.getFileSystem().provider().checkAccess
(filePath, READ, EXECUTE);
System.out.println("File can be read & executed");
}
catch(IOException e)
{
System.out.println("File cannot be used in this app");
}
}
}