Over on Superuser, I asked about whether or not it's okay to have filenames and/or folder names that begin with a period (dot) on a Windows NTFS volume.
The immediate response I received was to avoid doing this. Update: The author of that answer graciously changed his answer, and is now indicating that it is no problem. So I think my question is now moot, but I'll leave it up for a few days to see if there are any more updates or commentary here.
What's an effective way to backup Android hidden files and folders (which begin with a period) onto a Windows NTFS volume?
The person answering my question on Superuser recommended renaming the files on Android, if possible. Well, that's certainly possible. It involves these steps:
- Finding every file/folder that begins with a period
- Making a copy of each file/folder found
- Renaming each file/folder copied to a unique name that does not begin with a period
- Backing up the copies (most likely via FTP)
- Deleting all the copies
Ugh. Is there a better way to accomplish this task? And if not, is there a way to automate all this work?
sdcardfs
already take care aboutfat
compatible file names itself, no need forext4
on windows. you simply can't create incompatible file names within /storage/emulated/0 – alecxs Feb 16 '21 at 09:00