Running a simple console test app on Windows 7 the File.DirApp is returning the 'short' filename system but I need the long file system. Example:
Output:
File.DirApp returns "D:\BASICJ~1\CONSOL~1\Objects"
File.DirTemp returns "C:\Users\Owner\AppData\Local\Temp\"
Can this be fixed so that File.DieApp returns the long file system method?
B4X:
' console app - Test File.DirXX output
#Region Project Attributes
#CommandLineArgs:
#End Region
Sub Process_Globals
End Sub
Sub AppStart (Args() As String)
Log(File.DirApp)
Log(File.DirTemp)
End Sub
Output:
File.DirApp returns "D:\BASICJ~1\CONSOL~1\Objects"
File.DirTemp returns "C:\Users\Owner\AppData\Local\Temp\"
Can this be fixed so that File.DieApp returns the long file system method?
Last edited: