This article will show you the rules to name the files and folders to avoid unexpected errors when importing files to Creative Force system. As we an API first software, some special characters are not supported as they are hard to manage via API calls.
File Name (without extension)
We allow all unicode characters, except some special characters in the following table
Special characters will be replaced by underscore _
If the file name ends with a dot . the dot will be replace with underscore _
Invalid character in the file name
Hex Code | Character |
0x22 | " |
0X3C | < |
0X3E | > |
0X7C | | |
0X3A | : |
0X2A | * |
0X3F | ? |
0X5C | \ |
0X2F | / |
0X00 | |
0X01 | |
0X02 | |
0X03 | |
0X04 | |
0X05 | |
0X06 | |
0X07 | |
0X08 | |
0X09 | |
0X0A | |
0X0B | |
0X0C | |
0X0D | |
0X0E | |
0X0F | |
0X10 | |
0X11 | |
0X12 | |
0X13 | |
0X14 | |
0X15 | |
0X16 | |
0X17 | |
0X18 | |
0X19 | |
0X1A | |
0X1B | |
0X1C | |
0X1D | |
0X1E | |
0X1F |
Folder Name
Foder name have the same rule with file name
Folder Path
We are using / to separate path
\ will be replaced by separate character /
We don’t allow duplication separation character, all duplication will be removed, example abc///xyz ⇒ abc/xyz