Hi nrodes and welcome to thinBasic community forum.
You was almost right but you need to pass a string expression to DIR_Make
So change your code to something like:
[code=thinbasic]
uses "file"
dir_make("C:\WINDOWS\system_setting")
[/code]
Or something like:
[code=thinbasic]uses "file"
dim MyNewPath as string
MyNewPath = "C:\WINDOWS\system_setting"
dir_make(MyNewPath)[/code]
Ciao
Eros
Bookmarks