From 74aa26e974fd69dd81596b154824da9df352d4a8 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Mon, 7 Jun 2021 12:07:15 -0500 Subject: [PATCH] updated README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6781465..4fad4b1 100644 --- a/README.md +++ b/README.md @@ -136,8 +136,8 @@ await api.directory.remove('/test') // Check if file exists const exists = await api.file.exists('/my_file.txt') -// Delete a file -await api.file.delete('/my_file.txt') +// Remove a file +await api.file.remove('/my_file.txt') // Download a remote file await api.file.download('/my_file.txt', 'C:\\my_file.txt', progress_cb);