I use SPI flash memory for FlashFS (LPC23xx and Microchip SST25VF032B or Numonyx N25Q032). All are OK, but I cannot create a directory as SD card. if I use the string s:\dir\file.ext
char file_name_str[25]; FILE *fp; strcpy(file_name_str,"s:\\dir\\file.ext"); fp = fopen(file_name_str,"w"); ... fclose(fp); ....
I have file with name "\dir\file.ext", "dir" directory is not created !
Why?