E
eoghan
Hi
Im listing the contents of a folder using this:
Find.find('/Volumes/MYBOOK/stuff/') do |f| p f end
This is fine, but im seeing hidden files are with ._ prefix.
Is there any easy way to exclude this?
The folder contains sub folders alphabetised, as in a, b, c, d etc
another thing; when i print this i get:
"/Volumes/MYBOOK/stuff/a/file.stuff"
how could i just print
/a/file.stuff?
Thanks!
Eoghan
Im listing the contents of a folder using this:
Find.find('/Volumes/MYBOOK/stuff/') do |f| p f end
This is fine, but im seeing hidden files are with ._ prefix.
Is there any easy way to exclude this?
The folder contains sub folders alphabetised, as in a, b, c, d etc
another thing; when i print this i get:
"/Volumes/MYBOOK/stuff/a/file.stuff"
how could i just print
/a/file.stuff?
Thanks!
Eoghan