Shared Folder not in Sync with external Storage

I have the problem with Shared folders that not in sync with the storage.
tho understand first the setup of my nextcloud:

i have one time LDAP Users (Company Users)
and second free registered Users ( Internal User Accounts)

for the LDAP User exist a SMB External Storage to the windows File Server (Globaly Configured )

in this share the Workers Share folders with the local Users

if now a file is added (Not over nextcloud, only in the network share)
this file is not visible for the local user account until one of the worker access the shared folder
and the index get refreshed.

sudo -u www-data php occ files:scan --path “/admin/files/Daten/”
-> this works but only if i run it for the user that are shared the links.
an --all tooks to long so its nod possible

is there any way to disable this file cache that nextcloud just read whats on disk or any other solution?

Nextcloud version (eg, 20.0.6): 20.0.6
Operating system and version (eg, Ubuntu 20.04): Debian 10.7
PHP version (eg, 7.4): 7.3.19

The output of your config.php file in /path/to/nextcloud (make sure you remove any identifiable information!):

$CONFIG = array (
  'instanceid' => 'xxxxxxxxxxx',
  'passwordsalt' => 'xxxxxxxxxxx',
  'secret' => 'xxxxxxxxxxx/CZ/n3OQ+',
  'trusted_domains' => 
  array (
    0 => 'xxxxxxxxxxx',
  ),
  'datadirectory' => '/mnt/data/nextcloud',
  'dbtype' => 'mysql',
  'version' => '20.0.6.1',
  'overwrite.cli.url' => 'https://xxxxxxxxxxx',
  'dbname' => 'xxxxxxxxxxx',
  'dbhost' => 'xxxxxxxxxxx',
  'dbport' => '',
  'dbtableprefix' => 'oc_',
  'dbuser' => 'xxxxxxxxxxx',
  'dbpassword' => 'xxxxxxxxxxx',
  'installed' => true,
  'default_language' => 'de',
  'remember_login_cookie_lifetime' => 1296000,
  'session_lifetime' => 2592000,
  'mail_from_address' => 'xxxxxxxxxxx',
  'mail_smtpmode' => 'smtp',
  'mail_domain' => 'xxxxxxxxxxx',
  'mail_smtphost' => 'xxxxxxxxxxx',
  'mail_smtpport' => 'xxxxxxxxxxx',
  'memcache.local' => '\\OC\\Memcache\\APCu',
  'updater.release.channel' => 'stable',
  'ldapIgnoreNamingRules' => false,
  'ldapProviderFactory' => 'OCA\\User_LDAP\\LDAPProviderFactory',
  'loglevel' => 2,
  'maintenance' => false,
  'updater.secret' => 'xxxxxxxxxxx',
  'theme' => '',
  'mysql.utf8mb4' => true,
  'mail_sendmailmode' => 'smtp',
  'mail_smtpauth' => 1,
  'mail_smtpname' => 'xxxxxxxxxxx',
  'mail_smtppassword' => 'xxxxxxxxxxx',
  'filesystem_check_changes' => 1,
);