Expand my Community achievements bar.

SOLVED

Copying Folder and contents into Assets via Touch UI

Avatar

Level 2

Is it a problem that Importing folders and contents via Touch UI includes hidden files from UNIX source?

1 Accepted Solution

Avatar

Correct answer by
Community Advisor and Adobe Champion

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 {} \;

 

 

View solution in original post

3 Replies

Avatar

Level 2

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.

Avatar

Correct answer by
Community Advisor and Adobe Champion

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 {} \;

 

 

Avatar

Level 2

Thank You BrianK