basic-ftp
Advanced tools
Comparing version 2.5.0 to 2.5.1
# Changelog | ||
## 2.5.1 | ||
- Mention DOS-style directory listing support in README. | ||
## 2.5.0 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "basic-ftp", | ||
"version": "2.5.0", | ||
"version": "2.5.1", | ||
"description": "FTP/FTPS client library", | ||
@@ -5,0 +5,0 @@ "main": "./lib/ftp", |
@@ -108,3 +108,3 @@ # Basic FTP | ||
List files and directories in the current working directory. Currently, this library only supports Unix-style directory listings. | ||
List files and directories in the current working directory. Currently, this library only supports Unix- and DOS-style directory listings. | ||
@@ -147,3 +147,3 @@ `upload(readableStream, remoteFilename)` | ||
You can provide a custom parser to parse directory listing data, for example to support the DOS format. This library only supports the Unix format for now. Parsing these list responses is a central part of every FTP client because there is no standard that all servers adhere to. The signature of the function is `(rawList: string) => FileInfo[]`. `FileInfo` is also exported by the library. | ||
You can provide a custom parser to parse directory listing data, for example to support the DOS format. This library only supports the Unix and DOS formats for now. Parsing these list responses is a central part of every FTP client because there is no standard that all servers adhere to. The signature of the function is `(rawList: string) => FileInfo[]`. `FileInfo` is also exported by the library. | ||
@@ -150,0 +150,0 @@ ## Extend |
90044