Only some folders detect in cifs share

Hi,
I reinstall volumio last weekend because of my fault (I presumed that volumio failed to load cifs, but it was an usb issue).
So, I installed new volumio, configure cifs share with no issues. But I don’t have all folders on mpd base. I connect on volumio ssh, go to /var/lib/mpd/music/NAS/[share] and all the folders appears.
with a ls -ahl, I see that all folders and subfolders are rwxrwxrwx (I change files & folders permission to 777 to be sure). But mpd base never seen all the folders.
It see every time the same. Not alphabetical respect. It seems to have no particulary reasons.
/var/log/volumio.log don’t list anything particulary, but I can post it if you wan’t.
I use mpd on another computer with the same cifs share without any problem…
If someone have an idea.
I’m not a linux noob. I use for 19 years, I use archlinux, funtoo i3-wm, manjaro, debian… I use mpd for many years too so, don’t give me basic errors that I have probably already search for…
Sorry for my english…

So you are saying that you can see all the folders (and contents?) from the CLI but that mpd does not see them?

Yes, I see all the folders when I connect with ssh. But partially by webui/ncmpcpp

Just a hunch here - do the not-detected folders contain non-ASCII characters? (é 渡 æ)? If so, there may be a problem with the mount command not including -o utf8 as a switch.

not only no utf-8 folders…
But there is some folder with possibly this problem…

Here’s my mpd.conf. It sees all :smiley:

[code]# Volumio MPD Configuration File

Files and directories

music_directory “/var/lib/mpd/music”
playlist_directory “/var/lib/mpd/playlists”
db_file “/var/lib/mpd/tag_cache”
log_file “/var/log/mpd.log”
#pid_file “/var/run/mpd/pid”
#state_file “/var/lib/mpd/state”
#sticker_file “/var/lib/mpd/sticker.sql”
###############################################################################

General music daemon options

user “mpd”
group “audio”
bind_to_address “any”
#port “6600”
#log_level “default”
gapless_mp3_playback “no”
#save_absolute_paths_in_playlists “no”
#metadata_to_use “artist,album,title,track,name,genre,date,composer,performer,disc”
auto_update “yes”
#auto_update_depth “3”
###############################################################################

Symbolic link behavior

follow_outside_symlinks “yes”
follow_inside_symlinks “yes”
###############################################################################

Input

input {
plugin “curl”

proxy “proxy.isp.com:8080

proxy_user “user”

proxy_password “password”

}
###############################################################################

Decoder

###############################################################################

Audio Output

resampler {
plugin “soxr”
quality “high”
threads “1”
}

audio_output {
type “alsa”
name “alsa”
device “softvolume”
dop “no”

}

audio_output {
type “fifo”
enabled “no”
name “multiroom”
path “/tmp/snapfifo”
format “44100:16:2”
}

#replaygain “album”
#replaygain_preamp “0”
volume_normalization “no”
###############################################################################

MPD Internal Buffering

audio_buffer_size “8192”
buffer_before_play “10%”
###############################################################################

Resource Limitations

#connection_timeout “60”
max_connections “20”
max_playlist_length “81920”
max_command_list_size “81920”
max_output_buffer_size “81920”
###############################################################################

Character Encoding

filesystem_charset “UTF-8”
id3v1_encoding “UTF-8”
###############################################################################
volumio@volumio1:/etc$[/code]

HTH - I’ve been there before, let me know, if you wish, what files are missing and maybe it is something that works out easily.