我正在从 FTP 服务器下载文件。一些文件名中有空格,但我的 RegEx 无法识别。
例子:
-rw-r--r-- 1 ftp ftp 8613651 Apr 15 2011 Crystal Reports User Guide.pdf
代码:
string[] splitDownloadFile = Regex.Split(dFile, @"\s+");
string fMonth = splitDownloadFile[5];
string fDate = splitDownloadFile[6];
string fyear = splitDownloadFile[7];
string fName = splitDownloadFile[8];
是否可以将字符串 fName 设置为字符串的其余部分?