I need to see YES when a file loaded to Winamp is from
M:\M\0 0\- O\
or its subfolders - and to show NO when a file was loaded from any other location. What should I put then in my
Options > Preferences > Playlist > Titles > Advanced Title Formatting
if this
and this
always show NO?
M:\M\0 0\- O\
or its subfolders - and to show NO when a file was loaded from any other location. What should I put then in my
Options > Preferences > Playlist > Titles > Advanced Title Formatting
if this
PHP Code:
$if($strstr(%path%,'M:\M\0 0\- O'),YES,NO)
and this
PHP Code:
$IfStrEqual2($split(%filename%,\,0),'M:\M\0 0\- O\','YES',' NO')
always show NO?
Comment