MFMT Commad does not work on file/path names that have one or more white spaces
-------------------------------------------------------------------------------
Key: FTPSERVER-231
URL: https://issues.apache.org/jira/browse/FTPSERVER-231
Project: FtpServer
Issue Type: Bug
Components: Core
Affects Versions: 1.0.0-M3
Reporter: Sai Pullabhotla
Fix For: 1.0.0-M4
MFMT Commad does not work on file/path names that have one or more white
spaces.
For example if you have a file named "my file.txt", running the MFMT command on
this file fails.
To fix this, the MFMT.java needs to be changes as follows:
String[] arguments = argument.split(" "); should be changed to
String[] arguments = arguments.split(" ", 2);
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.