1 2 3 4 5 6 7 8 9 10
|
/** Gives a handle to an hidden file.
* <br>Dependending on how hidden file are managed by the system, the return file may be different from the given filename.
* <p>If the requested file does not exists, this method tries to create it and tries to set it to hidden.
* <br>If it already exists, this methode tries to set it to hidden.
* @param filename The base filename.
* @return The file handle to the hidden file.
* @exception SecurityException If the system's security settings does not allow you to create an hidden file or change an existing file's access mode to hidden.
*/
File createHiddenFile(String filename) throws SecurityException; |
Partager