#import file starting with letter t

5 messages · Page 1 of 1 (latest)

sonic kindle
#

i am workin on a project and i have ```cpp
#include "chapthers\classes..."

where i include all the files i need that are inside the folder ´classes´ but for some reasson all files that start with the letter 't' aren´t importing. The error message says "File not found" and then shows the path of the file its trying to import.```txt
"...\chaphters\classesech.typ" ```where it should be ```txt
"...\chaphters\classes\tech.typ" ```
If my file name is 'ttelevision', for example, the error message says 'File not found,' and the path is:```txt
"...\chaphters\classestelevision.typ" ``` It loses the backslash and the first t.

Has anyone face this issue or know how to solve?
shadow axle
#

try #include "chapthers/classes/..."

sonic kindle
#

it worked.
but why it doesnt work with backslash? it works with other files

drifting glen
#

you can use \\t to have a backslash followed by a t, but just using forward slashes is better