You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the Copy button in the Results Wizard does not distinguish between normal (main GUI) runs and instance runs (see Issue #192). It just copies the leaf folder (yymmdd_hh_mm_ss) to the chosen destination. This makes it difficult to determine which instance the run was for. And since it is possible for runs in different instances to have been performed at the same time, it could even result in folder name conflicts.
The destination path should include the same inst/ levels in its hierarchy that the source path does.
The text was updated successfully, but these errors were encountered:
Modify the get_dest_dir() method to insert the "inst/<name>" part of the source path in the destination path, if it exists.
Take advantage of the fact that os.path.join inserts directory separators only for non-empty segments. By initializing inst_path and overlays to "", this avoids multiple branches and should have been done previously.
Currently, the Copy button in the Results Wizard does not distinguish between normal (main GUI) runs and instance runs (see Issue #192). It just copies the leaf folder (yymmdd_hh_mm_ss) to the chosen destination. This makes it difficult to determine which instance the run was for. And since it is possible for runs in different instances to have been performed at the same time, it could even result in folder name conflicts.
The destination path should include the same inst/ levels in its hierarchy that the source path does.
The text was updated successfully, but these errors were encountered: