gpt4 book ai didi

java - 用Java文件方法删除Jar快捷方式

转载 作者:太空宇宙 更新时间:2023-11-04 14:59:19 27 4
gpt4 key购买 nike

如何删除快捷方式文件。可能是因为我没有输入扩展文件名。我试过txt文件,它可以删除。但用捷径却没有。剂量快捷方式有什么特殊的扩展吗?

File file = new File("C://app"); //app is the shortcut
file.delete(); // when the code is executed the app shortcut file did not deleted..

解决方案

 File file = new File("C://app.lnk"); //add .lnk (window shortcut extension)
file.delete(); //now can delete shortcut

最佳答案

我们只需将 .lnk 扩展名添加到文件中,如下所示。

File file = new File("C://app.lnk"); //add .lnk (window shortcut extension)
file.delete(); //now can delete shortcut

关于java - 用Java文件方法删除Jar快捷方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22800669/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com