-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #613 from WildernessLabs/cli-2.0.65
Cli 2.0.65
- Loading branch information
Showing
7 changed files
with
100 additions
and
34 deletions.
There are no files selected for viewing
75 changes: 75 additions & 0 deletions
75
Source/v2/Meadow.CLI/Commands/Current/File/FileDeleteAllCommand.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
using CliFx.Attributes; | ||
using Meadow.Hcom; | ||
using Microsoft.Extensions.Logging; | ||
|
||
namespace Meadow.CLI.Commands.DeviceManagement; | ||
|
||
[Command("file delete-all", Description = "Deletes all files from the device")] | ||
public class FileDeleteAllCommand : BaseDeviceCommand<FileDeleteCommand> | ||
{ | ||
public FileDeleteAllCommand(MeadowConnectionManager connectionManager, ILoggerFactory loggerFactory) | ||
: base(connectionManager, loggerFactory) | ||
{ } | ||
|
||
protected override async ValueTask ExecuteCommand() | ||
{ | ||
var connection = await GetCurrentConnection(); | ||
var device = await GetCurrentDevice(); | ||
|
||
var state = await device.IsRuntimeEnabled(CancellationToken); | ||
|
||
if (state == true) | ||
{ | ||
Logger?.LogInformation($"{Strings.DisablingRuntime}..."); | ||
await device.RuntimeDisable(CancellationToken); | ||
} | ||
|
||
Logger?.LogInformation($"Looking for files..."); | ||
|
||
var folder = AppTools.SanitizeMeadowFolderName("\\"); | ||
|
||
var fileList = await connection.GetFileList($"{folder}", false, CancellationToken); | ||
|
||
if (fileList == null || fileList.Length == 0) | ||
{ | ||
Logger?.LogError($"File delete failed, no files found"); | ||
return; | ||
} | ||
|
||
foreach (var file in fileList) | ||
{ | ||
await DeleteFileRecursive(device, folder, file, CancellationToken); | ||
} | ||
} | ||
|
||
private async Task DeleteFileRecursive(IMeadowDevice device, string directoryname, MeadowFileInfo fileInfo, CancellationToken cancellationToken) | ||
{ | ||
var meadowFile = AppTools.SanitizeMeadowFilename(Path.Combine(directoryname, fileInfo.Name)); | ||
|
||
foreach (var folder in AppManager.PersistantFolders) | ||
{ | ||
if (meadowFile.StartsWith($"/{AppManager.MeadowRootFolder}/{folder}")) | ||
{ | ||
return; | ||
} | ||
} | ||
|
||
if (fileInfo.IsDirectory) | ||
{ | ||
// Add a backslash as we're a directory and not a file | ||
meadowFile += "/"; | ||
var subfolderFiles = await device.GetFileList(meadowFile, false, cancellationToken); | ||
|
||
foreach (var subfolderFile in subfolderFiles!) | ||
{ | ||
await DeleteFileRecursive(device, meadowFile, subfolderFile, cancellationToken); | ||
} | ||
return; | ||
} | ||
|
||
Logger?.LogInformation($"Deleting file '{meadowFile}' from device..."); | ||
|
||
await device.DeleteFile(meadowFile, cancellationToken); | ||
await Task.Delay(100); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters