blaat34 Posted October 31, 2014 Posted October 31, 2014 Hi There, I have a quick question, i want to create a directory but a part of the path is in a ini-file. Local $PO = IniRead("G:\test folder\test2.ini", "al", "key", "NotFound") MsgBox(4096, "Test", $PO, 10) DirCreate("G:\test folder\"$PO") But i can't seem to get it to work. Thanks for your support
behdadsoft Posted October 31, 2014 Posted October 31, 2014 Hi. Try this code: Local $PO = IniRead("G:\test folder\test2.ini", "al", "key", "NotFound") MsgBox(4096, "Test", $PO, 10) DirCreate("G:\test folder" & $PO)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now