We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69e5a4a commit 558a820Copy full SHA for 558a820
common/src/main/java/com/genexus/util/GXFileInfo.java
@@ -28,7 +28,7 @@ public GXFileInfo(File file, boolean isDirectory){
28
this.isDirectory = isDirectory;
29
}
30
public String getPath(){
31
- if (fileSource.isFile()){
+ if (fileSource.isFile() || !exists()){
32
String absoluteName = getAbsolutePath();
33
if (!absoluteName.equals(""))
34
return new File(absoluteName).getParent();
0 commit comments