When I do this, the file is created in the default directory:
var CurFile = new File( "MyPairLevels.csv" );
But I want it on the root directory, so I do this, but no file is created:
var CurFile = new File( "C:/MyPairLevels.csv" );
How can I have my file in the root directory?
var CurFile = new File( "MyPairLevels.csv" );
But I want it on the root directory, so I do this, but no file is created:
var CurFile = new File( "C:/MyPairLevels.csv" );
How can I have my file in the root directory?
Comment