| java.lang.Object java.io.File com.memoire.vainstall.VAFile
VAFile | public class VAFile extends File (Code) | | Extension of java.io.File that overcomes a problem in File.canWrite
on Windows XP. Breifly, new File("C:\\Program Files").canWrite()
always returns false on Win XP even if the directory is writable.
This class overrides canWrite. The new method is used
only if the platform is Windows and the file is a directory.
Otherwise, the parental method is used.
author: Dick Repasky |
canWrite | public boolean canWrite()(Code) | | |
|
|