Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想获取文件夹中的所有快捷方式(.lnk 文件)(例如“C:\Temp\”)。我在 Java 或 VBA 中需要它。
请问有人可以帮忙吗?
您可以在 Java 中使用类似这样的代码获取文件的名称。我相信你可以弄清楚其余的。
File folder = new File("C:/foldername"); String[] linkFiles = f.list(new FilenameFilter() { @Override public boolean accept(File dir, String name) { return name.endsWith(".lnk"); } });