/** * Returns the path of the directory where the link file is stored, if it was necessary during the * previous save operation to create the directory. This method returns <code>null</code> if no * save operation was carried out or there was no need to create a directory during the previous * save operation. * * @return the path of the directory where the link file is stored or <code>null</code> if no save * operation was carried out or there was no need to create a directory during the previous * save operation. */ public String getDirectoryCreated() { String directoryCreated = shortcut.getDirectoryCreated(); Debug.log(CLASS + myClass + ".getDirectoryCreated() '" + directoryCreated + "'"); return (directoryCreated); }
/** * Returns the path of the directory where the link file is stored, if it was necessary during the * previous save operation to create the directory. This method returns <code>null</code> if no * save operation was carried out or there was no need to create a directory during the previous * save operation. * * @return the path of the directory where the link file is stored or <code>null</code> if no save * operation was carried out or there was no need to create a directory during the previous * save operation. */ @Override public String getDirectoryCreated() { String directoryCreated = shortcut.getDirectoryCreated(); return (directoryCreated); }