Damaskox@kbin.social to Android@lemdro.id · 11 months agoCan I generate a text file of a folder's contents (files) on the phone?message-squaremessage-square5fedilinkarrow-up121arrow-down12file-text
arrow-up119arrow-down1message-squareCan I generate a text file of a folder's contents (files) on the phone?Damaskox@kbin.social to Android@lemdro.id · 11 months agomessage-square5fedilinkfile-text
minus-squarestifle867@programming.devlinkfedilinkEnglisharrow-up5·11 months agoYou could download a terminal app (termux from f-droid) and run ls > file.txt. You would first want to cd (change directory) to the location you’re interested in. This will generate a file.txt with the output of ls (list files command).
You could download a terminal app (termux from f-droid) and run
ls > file.txt
. You would first want tocd
(change directory) to the location you’re interested in. This will generate afile.txt
with the output ofls
(list files command).