Angelo2449
Guest
Hello everyone,
I'm going crazy trying to open a file. I always get the message.
> error: type of wrong topic: file nil
the name of the file, complete of the path is > d:\altprovvisori\lcfile.dat < that translated the autolisp fa > d:\\altprovvisori\\\lcfile.dat <.
if I enter the route directly:
everything works perfectly, if instead I derive the path through the clipboard of windows 10 :
obtaining > d:\\\altprovvisori\\\\\lcfile.dat < appears the above error message and the operation fails.
I also entered the apics before and after > "d:\\\altprovvisori\\lcfile.dat" but the result is the same.
Thank you.
I'm going crazy trying to open a file. I always get the message.
> error: type of wrong topic: file nil
the name of the file, complete of the path is > d:\altprovvisori\lcfile.dat < that translated the autolisp fa > d:\\altprovvisori\\\lcfile.dat <.
if I enter the route directly:
Code:
(setq path "d:\\altprovvisori\\\\lcfile.dat")
Code:
(setq path nil)
(runapp "c:\\autocadsupporto\\\\libertytre\\\inputpregeo.exe "c:\\\\\autocadsupporto\\\\\\\\inputpregeo.tkn" :vlax-true)
(while (= path nil)
(setq route (getcliptext))
);
(princ "\n")
(princ)
(princ route)
(princ "\n")
I also entered the apics before and after > "d:\\\altprovvisori\\lcfile.dat" but the result is the same.
Thank you.