Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've a question about the parents of a file. When I'm retrieving information about the parent with $file->getParents(), I'm receiving an array with the only element being the information about the parent.

My question is: for now, I've always only one parent but can a file get more parents? And if yes, in which case?

Thanks you for your answer.

share|improve this question

1 Answer

up vote 1 down vote accepted

A file can be logically part of multiple collections, you can consider them as labels that allow a hierarchy. When a file belongs to multiple folders, the API will return their list when calling getParents().

share|improve this answer
Ok thanks, my Drve doesn't have subfolders in folders, which may explain why I didn't think about it. – vicrabb Jul 24 '12 at 7:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.