Skip to content
New issue

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

Export Java Code function replaces classes with same name but different casing #167

Open
brunoaduarte opened this issue Jun 6, 2024 · 0 comments

Comments

@brunoaduarte
Copy link

brunoaduarte commented Jun 6, 2024

When I export the Java code, it creates .Java files from the decompilation provided by GDA.

The problem is that if there are classes with similar names in the same package, for example: X.6ZY and X.6Zy, the exported files will be replaced, as Windows filenames are case-insensitive by default.

\x\6ZY.java will be overwritten by \x\6Zy.java

So it's good idea to enable case sensivity for the folder that the files will be saved to, before starting the process.

fsutil.exe file setCaseSensitiveInfo "PATH_TO_EXPORTED_FOLDER" enable

to check

fsutil.exe file queryCaseSensitiveInfo "PATH_TO_EXPORTED_FOLDER"

Would be nice if GDA could do this automatically

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant