You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!shortcutFile.exists() && !shortcutFile.createNewFile()) {
Throws an exception "could not find the path specified".
Reason is that the path does only exist up to the icedtea-web directory. Cache directory hasn't been created yet.
This happens on a fresh OWS installation and opening a jnlp and it's linked resources from a samba network share on Windows. Paths inside the jnlp are codebase="file://\\\\host/with/path/to/share/" for example. OWS iterprets this as a "local path" and does not cache anything. Consequently the last level from the cache directory haven't been created yet.
Cache directory should be checked if exist before trying to create shortcutFile.
The text was updated successfully, but these errors were encountered:
ShortcutFile should go to C:\Users\<username>\.cache\icedtea-web\cache in my case, but it doesn't.
IcedTea-Web/core/src/main/java/net/sourceforge/jnlp/util/WindowsDesktopEntry.java
Line 156 in 1be00cf
Throws an exception "could not find the path specified".
Reason is that the path does only exist up to the icedtea-web directory. Cache directory hasn't been created yet.
This happens on a fresh OWS installation and opening a jnlp and it's linked resources from a samba network share on Windows. Paths inside the jnlp are
codebase="file://\\\\host/with/path/to/share/"
for example. OWS iterprets this as a "local path" and does not cache anything. Consequently the last level from the cache directory haven't been created yet.Cache directory should be checked if exist before trying to create shortcutFile.
The text was updated successfully, but these errors were encountered: