Java - 从桌面上的快捷方式读取名称、路径、大小等详细信息
Java - read details like name, path, size from shortcut on desktop
是否可以使用 java 读取桌面快捷方式的 information/details?我的意思是名称、类型、文件大小、路径、创建日期、更改日期等详细信息...
Windows 快捷方式本身就是一个文件,因此将其作为文件访问是一个很好的起点。
要实际检索与快捷方式指向的资源相关的信息,请查看以下示例:
- Managing Metadata (File and File Store Attributes)
- Windows shortcut (.lnk) parser in Java?
- Parsing Windows Shortcuts (lnk) files in java
是否可以使用 java 读取桌面快捷方式的 information/details?我的意思是名称、类型、文件大小、路径、创建日期、更改日期等详细信息...
Windows 快捷方式本身就是一个文件,因此将其作为文件访问是一个很好的起点。
要实际检索与快捷方式指向的资源相关的信息,请查看以下示例:
- Managing Metadata (File and File Store Attributes)
- Windows shortcut (.lnk) parser in Java?
- Parsing Windows Shortcuts (lnk) files in java