LDraw.org Discussion Forums
Datheader downloading files to prog folder - Printable Version

+- LDraw.org Discussion Forums (https://forums.ldraw.org)
+-- Forum: LDraw Programs (https://forums.ldraw.org/forum-7.html)
+--- Forum: Parts Author Tools (https://forums.ldraw.org/forum-24.html)
+--- Thread: Datheader downloading files to prog folder (/thread-20650.html)



Datheader downloading files to prog folder - Willy Tschager - 2016-02-16

Mike,

when Datheader downloads the category.txt, ldconfig.ldr, primitivescale.txt files it will download them to prog folder and obviously they end up under:

C:\Users\<username>\AppData\Local\VirtualStore

could you please look into it.

Thx, w.


Re: Datheader downloading files to prog folder - Michael Heidemann - 2016-02-18

Those files are downloaded to the folder that is specified in the options:
Path for lists

So it is up to you where they end Smile


Re: Datheader downloading files to prog folder - Willy Tschager - 2016-02-19

Upps! Never noticed. What is the "Path for Download"?

w.


Re: Datheader downloading files to prog folder - Philippe Hurbain - 2016-02-19

It's the path to store LDraw files you download directly from Tracker using DatHeader (Files -> Open from PT)


Re: Datheader downloading files to prog folder - Magnus Forsberg - 2016-02-19

You'll find it under Option -> Preferences.
In the middle of the window you're able to set:
Path for Download
Path for Lists
Ldraw Base Path


Re: Datheader downloading files to prog folder - Michael Heidemann - 2016-02-20

I just looked also in the documentation it is still valid for that items.


Re: Datheader downloading files to prog folder - Willy Tschager - 2016-02-20

What is the default location set by the program itself - in case it sets?

w.


Re: Datheader downloading files to prog folder - Michael Heidemann - 2016-02-20

Yes, the application sets the values: Here is the code:

Code:
''' <summary>
    ''' This is the folder where the downloaded part files will be stored.
    ''' </summary>
    ''' <remarks></remarks>
    Public gstrTempFolder As String = System.IO.Path.Combine(My.Computer.FileSystem.SpecialDirectories.Temp, "DATHeader")

    ''' <summary>
    ''' This is the folder where the downloaded part files will be stored.
    ''' </summary>
    ''' <remarks>NOT YET USED</remarks>
    Public gstrWorkingFolder As String = My.Computer.FileSystem.SpecialDirectories.AllUsersApplicationData

    ''' <summary>
    ''' This is the folder where the app needed files are stored.
    ''' </summary>
    ''' <remarks></remarks>
    Public gstrListsFolder As String = My.Application.Info.DirectoryPath