请问这个程序的list方法中'.'点到底是干什么用的。package practice;
import java.io.*;public class TestFile {
public static void main(String[] args)
{
File path1 = new File("F:\\java\\practice\\src\\practice");
File file1 = new File("F:\\java\\practice\\src\\practice\\file1");


path1.mkdir();
try
{
System.out.println("the path is being Created");
file1.createNewFile();
}
catch(IOException ex)
{
ex.printStackTrace();
}
System.out.println("the name of the content :"+file1.getAbsolutePath());
System.out.println("the content in the content is:");
String[] sa = new File(".").list();      //这个'.'到底是什么,和这么用这个file类的list方法
for(int i = 0; i< sa.length; i++)
{
System.out.println(sa[i]);
}

System.out.println("\n***************************\n");
System.out.println("the content is deleted");

file1.delete();
path1.delete();
 
sa = new File(".").list();
for(int i = 0; i< sa.length; i++)
{
System.out.println(sa[i]);
}




}
}