We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
File existence checks should use quotes in Windows (when the filename uses spaces). Currently
if (exists("file 2.txt")) { println("file exists"); }
compiles to
if exist file 2.txt ( echo file exists )
but it should compile to
if exist "file 2.txt" ( echo file exists. )
In fact, quoting file names is never wrong, so simply doing it always won't break stuff.
The text was updated successfully, but these errors were encountered:
damn, two typos in the title, that's a sad record...
Sorry, something went wrong.
No branches or pull requests
File existence checks should use quotes in Windows (when the filename uses spaces). Currently
compiles to
but it should compile to
In fact, quoting file names is never wrong, so simply doing it always won't break stuff.
The text was updated successfully, but these errors were encountered: