My organization recently upgraded our SAS install from SAS 9.4 TS1M3 (x86) to SAS 9.4 TS1M7 (x64). In Base SAS before the upgrade, ods html files would save to the current/active folder without specifying path. After the upgrade, ods html files without the path statement save to the default work directory regardless of current/active folder.
I can clearly update my ods html statements to include path="examplePath", but my organization has a significant amount of legacy code that is dependent on ods html statements without path specification. Are there any config file or other settings that can be changed so the default save location for ods html files is the current/active folder?
If helpful, I have confirmed that ods excel files save to the current/active folder without further specification of path.
ods html file = "testFile.html";
ods html file = "testFile.html" path ="c:\example\path";