Home | History | Annotate | Download | only in command

Lines Matching refs:directory

25  * CommandHandler for the PWD (Print Working Directory) and XPWD commands. By default, return

26 * an empty directory name, along with a reply code of 257. You can customize the returned
27 * directory name by setting the <code>directory</code> property.
36 private String directory = "";
46 sendReply(session, quotes(directory));
50 * Set the directory String to be returned by this command
52 * @param directory - the directory
54 public void setDirectory(String directory) {
55 this.directory = directory;