T0biasCZe / AdbFileManager

Fast Android <-> Windows file manager using ADB protocol
444 stars 29 forks source link

[BUG] Not properly deleting files or folders #17

Open mikeloeven opened 7 months ago

mikeloeven commented 7 months ago

The program does not seem to properly delete files or folders on the android side.

Connect android device. Open desired folder. select one or more files / folders inside press delete

selected items appear deleted but will come back when you click refresh indicating the command failed or was not properly executed.

I have checked the folder I was working with was simply Movies it is not a protected system folder and should not have any permission problems.

T0biasCZe commented 7 months ago

Thats because there actually isntany code for deleting files, and when you click delete, it deletes the row in the data grid view... (because i forgot to disable the permission for user to delete rows)

T0biasCZe commented 7 months ago

temporarily fixed by disabling deletion of rows, will add the file deletion code in future