Project

Profile

Help

Story #5559

Updated by bmbouter over 4 years ago

Say you create a Publication with 3 PublishedMetadata objects, each with an Artifact to be served to the user for that relative_path. Note <code>/foo</code> also has an Artifact. 

 * relative_path:    <code>/foo</code> 
 * relative_path:    <code>/foo/bar</code> 
 * relative_path:    <code>/foo/baz</code> 

 You can't create this on a POSIX filesystem because of the file/directory conflict on <code>foo</code>. 

 <pre> 
 [bmbouter@localhost tmp]$ touch foo 
 [bmbouter@localhost tmp]$ mkdir foo 
 mkdir: cannot create directory ‘foo’: File exists 
 </pre> 

 This prevents users from exporting the Artifacts from a Publication to POSIX filesystems. 

Back