You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 23, 2024. It is now read-only.
I can't differentiate easily between Dropbox::API::Dir and Dropbox::API::File, I'm interested in differentiate to put a different icon in the view, I'd like something like this.
@client.ls.each do |file|
if file.dir?
puts 'directory-icon'
else
puts 'file-icon'
end
end
I can work on this if it's a feature you'd like to add.