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
https://code.google.com/p/redtamarin/issues/detail?id=102
when we pass a relative path to isHidden() the result will always be wrong
as we preprend "\?" to support unicode path
a path like "..\test" will transform to "\?..\test" and most likely will not be found
see https://code.google.com/p/redtamarin/source/browse/trunk/src/as3/shell/FileSystem.as#2687
the fileSystem.isHidden function need to be patched
from
case "windows": return _isAttributeHidden( "\\\\?\\" + filename );
to
case "windows": return _isAttributeHidden( "\\\\?\\" + realpath( filename ) );
The text was updated successfully, but these errors were encountered:
the issue is still there see src/as3/shell/FileSystem.as
Sorry, something went wrong.
No branches or pull requests
https://code.google.com/p/redtamarin/issues/detail?id=102
when we pass a relative path to isHidden()
the result will always be wrong
as we preprend "\?" to support unicode path
a path like "..\test" will transform to "\?..\test" and most likely will not be found
see
https://code.google.com/p/redtamarin/source/browse/trunk/src/as3/shell/FileSystem.as#2687
the fileSystem.isHidden function need to be patched
from
to
The text was updated successfully, but these errors were encountered: