我正在尝试选择已知目录中的所有 .txt 文件。例如,我知道路径:C:/../Desktop/ 现在我想获取桌面上的所有 .txt 文件。
那么我应该使用哪个正则表达式以及如何搜索它?我对java不太了解。如果你帮助我,我会很高兴。
String regularExpression = ?
String path = "C:/../Desktop/";
Pattern pattern = Pattern.compile(regularExpression);
boolean isMatched = Pattern.matches(regularExpression,path);