version: 1.8.1
os: Linux
looking for files in a known folder on a USB media with label 1234-4321 cannot be found with:
path = finder.from('/media').findFile('/media/root/*/videos/*');
i have to do:
path = finder.from('/media').findFile('/media/root/*-*/videos/*');
any known way to get around this dash issue? dashes in file names also cause an issue finding them with * (e.g. test-video.mp4 isnt found in rest_of_path/*.mp4)
version: 1.8.1
os: Linux
looking for files in a known folder on a USB media with label 1234-4321 cannot be found with:
i have to do:
any known way to get around this dash issue? dashes in file names also cause an issue finding them with * (e.g. test-video.mp4 isnt found in rest_of_path/*.mp4)