devxlogo

Stomping the Windows File Bug

Stomping the Windows File Bug

This bug workaround identifies Windows operating systems and adds an identifier to the absolute root directory path to avert file problems.

 File root;String tmp;tmp  = System.getProperty("user.dir");root = new File(tmp);while((tmp = root.getParent()) != null)  root = new File(tmp);// Do this to work around a Win95 bugif(System.getProperty("os.name").toLowerCase().startsWith("win"))  root = new File(root.getAbsolutePath() + ".");
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist