Conversation
…n streamFileToDisk
|
| const INTERNXT = join(APP_DATA_PATH, 'internxt-drive'); | ||
| const LOGS = join(HOME_FOLDER_PATH, '.config', 'internxt', 'logs'); | ||
| const INTERNXT_DRIVE = join(APP_DATA_PATH, 'internxt-drive'); | ||
| const INTERNXT = join(HOME_FOLDER_PATH, '.config', 'internxt'); |
There was a problem hiding this comment.
Is this path used in the code? Because now you are exporting 2 similar paths and it's easy to use one instead of the other. If you are not using it, why exporting it? I assume you are not using it since it's a new path and it doesn't appear in the changes.
There was a problem hiding this comment.
There is a specific case to consider in Linux: two separate directories are used to store application data. The /internxt directory contains logs, application configuration, and ClamAV settings, while /internxt-drive stores the downloaded files from the virtual drive as well as the SQLite database.
Although this has been previously discussed, the unification of these directories will not be included in this release.



What is Changed / Added
The computer paths used by the application have been updated so that they can be accessed from a single location.