When using Net:Http parser and saving files with "\" in name like:
This\Is An Example.html
Instead of saving the full file name it will create a directory where the backslash is:
Directory Named "This"\Is An Example.html
Are there any other characters that would cause a directory to be created like this? Just want to make a list of characters to avoid in filename.
Here is the code I'm using for results file:
This\Is An Example.html
Instead of saving the full file name it will create a directory where the backslash is:
Directory Named "This"\Is An Example.html
Are there any other characters that would cause a directory to be created like this? Just want to make a list of characters to avoid in filename.
Here is the code I'm using for results file:
Code:
[% IF p1.info.success == 1;
IF query.lvl == 0;
USE Math;
dir = Math.int(query.num / 2000);
ELSIF query.lvl == 1;
dir = query.dir;
END;
'serp_raw/us_' _ dir _ '/' _ query.kw _ '.html';END %]