[ 
https://issues.apache.org/jira/browse/SSHD-929?focusedWorklogId=265844&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-265844
 ]

ASF GitHub Bot logged work on SSHD-929:
---------------------------------------

                Author: ASF GitHub Bot
            Created on: 24/Jun/19 17:16
            Start Date: 24/Jun/19 17:16
    Worklog Time Spent: 10m 
      Work Description: The-Yoda commented on pull request #104: [SSHD-929] 
Create separate listener for remove directory.
URL: https://github.com/apache/mina-sshd/pull/104#discussion_r296827367
 
 

 ##########
 File path: 
sshd-sftp/src/main/java/org/apache/sshd/server/subsystem/sftp/SftpEventListener.java
 ##########
 @@ -393,6 +393,30 @@ default void removed(ServerSession session, Path path, 
Throwable thrown) throws
         // ignored
     }
 
+    /**
+     * Called <U>prior</U> to removing a directory
+     *
+     * @param session The {@link ServerSession} through which the request was 
handled
+     * @param path    The {@link Path} about to be removed
+     * @throws IOException If failed to handle the call
+     * @see #removed(ServerSession, Path, Throwable)
+     */
+    default void removingDirectory(ServerSession session, Path path) throws 
IOException {
 
 Review comment:
   Ack
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
-------------------

    Worklog Id:     (was: 265844)
    Time Spent: 0.5h  (was: 20m)

> Separate listener for deleting directory in SFTP
> ------------------------------------------------
>
>                 Key: SSHD-929
>                 URL: https://issues.apache.org/jira/browse/SSHD-929
>             Project: MINA SSHD
>          Issue Type: Improvement
>    Affects Versions: 2.3.0
>            Reporter: Subramaniajeeva
>            Assignee: Goldstein Lyor
>            Priority: Minor
>          Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> Right now listener for deletion of file and directory is common. This makes 
> it difficult to find whether directory / file has been removed.
> The path passed to `removed` function in SftpEventListener will not tell if 
> the deleted path was a directory or file. `Files.isDirectory(path)` will 
> return false, as the derectory doesn't exist.
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@mina.apache.org
For additional commands, e-mail: dev-h...@mina.apache.org

Reply via email to