Hi,
the error occured when I tried to create a new folder 'MaskGen' in the local path like:
C:/Users/account/AppData/Local/MaskGen
The File object returns for the local temp folder:
C:/Users/account/AppData/Local/Temp
The statements in question:
parms.dataFolder = File.fullPath( File.systemTempDirectory + '/../MaskGen');
if (!File.directoryExists(parms.dataFolder))
{
File.createDirectory(parms.dataFolder);
This works with Windows.
Can anyone tell me, how the new relative path must be created in a Linux system?
Thanks in advance
Hartmut