Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Jan 15, 2024
1 parent 5ae25bf commit 24c60e7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,14 @@ func GetAllFiles() []string {

files := SplitByNewLine(stdout)

ls = exec.Command("adb", "shell", "find /sdcard/ -type d -empty")

stdout, _ = ls.Output()

dirs := SplitByNewLine(stdout)

files = append(files, dirs[:]...)

return files
}

Expand Down

0 comments on commit 24c60e7

Please sign in to comment.