Hi,
yes. I knew, you could add the Library/Application Support/ yourself.
But one native command for all OS would be a nice to have feature.
I am coding on my Mac, and the Windows-exe is more like a "waste product"
as it is possible to compile in a small amount of time.
If you have a command giving back the correct position of data, music,
photo, movie-folder on every os, this would reduce CompilerIfs as they
are present in my Reisekosten-project. Currently, I have to do this:
Code: Select all
CompilerSelect #PB_Compiler_OS
CompilerCase #PB_OS_Windows : Global DatenOrdner$ = GetHomeDirectory() + "quadWorks Reisekosten/"
CompilerCase #PB_OS_MacOS
Global DatenOrdner$ = GetHomeDirectory() + "Library/Application Support/quadWorks Reisekosten/"
Global DokumenteOrdner$ = GetHomeDirectory() + "Documents"
CompilerCase #PB_OS_Linux : Global DatenOrdner$ = GetHomeDirectory() + "documents/quadWorks Reisekosten/"
CompilerEndSelect
Instead I would have to to this:
Code: Select all
Global DatenOrdner$ = GetSettingsDirectory() + "quadWorks Reisekosten"
Global DokumenteOrdner$ = GetDocumentsDirectory()
I am not sure, where exactly the Documents lie under Windows xp, Vista, 7
