Is it a problem that Importing folders and contents via Touch UI includes hidden files from UNIX source?
Solved! Go to Solution.
Yes, importing folders and contents via Touch UI in AEM as a Cloud Service (AEMaaCS) from a UNIX source can include hidden files (such as .DS_Store, .gitignore, or other dot-prefixed files), which might cause unintended issues.
Pre-filter Before Upload: Before uploading, manually remove hidden files from the UNIX source using:
find . -name ".*" -exec rm -rf {} \;
The UNIX hidden files (files starting with dot (.) or (._) from the source server are visible in the AEM web UI. They are listed in upload reports and can be deleted individually. Although, if I try to search all files containing "._" I get no search results.
Seeing the hidden files after uploading a folder is confusing to creative users.
Yes, importing folders and contents via Touch UI in AEM as a Cloud Service (AEMaaCS) from a UNIX source can include hidden files (such as .DS_Store, .gitignore, or other dot-prefixed files), which might cause unintended issues.
Pre-filter Before Upload: Before uploading, manually remove hidden files from the UNIX source using:
find . -name ".*" -exec rm -rf {} \;
Thank You BrianK
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies